Package io.gopluslabs.client.model
Class ResponseWrapperListJSONObject
- java.lang.Object
-
- io.gopluslabs.client.model.ResponseWrapperListJSONObject
-
public class ResponseWrapperListJSONObject extends Object
ResponseWrapperListJSONObject
-
-
Constructor Summary
Constructors Constructor Description ResponseWrapperListJSONObject()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ResponseWrapperListJSONObjectaddResultItem(JSONObject resultItem)ResponseWrapperListJSONObjectcode(Integer code)booleanequals(Object o)IntegergetCode()Code 1: SuccessStringgetMessage()Response messageList<JSONObject>getResult()Response resultinthashCode()ResponseWrapperListJSONObjectmessage(String message)ResponseWrapperListJSONObjectresult(List<JSONObject> result)voidsetCode(Integer code)voidsetMessage(String message)voidsetResult(List<JSONObject> result)private StringtoIndentedString(Object o)Convert the given object to string with each line indented by 4 spaces (except the first line).StringtoString()
-
-
-
Field Detail
-
code
@SerializedName("code") private Integer code
-
message
@SerializedName("message") private String message
-
result
@SerializedName("result") private List<JSONObject> result
-
-
Method Detail
-
code
public ResponseWrapperListJSONObject code(Integer code)
-
getCode
public Integer getCode()
Code 1: Success- Returns:
- code
-
setCode
public void setCode(Integer code)
-
message
public ResponseWrapperListJSONObject message(String message)
-
getMessage
public String getMessage()
Response message- Returns:
- message
-
setMessage
public void setMessage(String message)
-
result
public ResponseWrapperListJSONObject result(List<JSONObject> result)
-
addResultItem
public ResponseWrapperListJSONObject addResultItem(JSONObject resultItem)
-
getResult
public List<JSONObject> getResult()
Response result- Returns:
- result
-
setResult
public void setResult(List<JSONObject> result)
-
-