Class BaseResponse

java.lang.Object
com.patreonshout.beans.response.BaseResponse

public class BaseResponse
extends java.lang.Object
POJO that returns a status and message for an http request
  • Field Summary

    Fields
    Modifier and Type Field Description
    private java.lang.String message
    message is the message response of the http request
    private int status
    status is the status of the http request
  • Constructor Summary

    Constructors
    Constructor Description
    BaseResponse()  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • status

      private final int status
      status is the status of the http request
    • message

      private final java.lang.String message
      message is the message response of the http request
  • Constructor Details

    • BaseResponse

      public BaseResponse()