com.conekta.model.GetOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ct-conekta-java Show documentation
Show all versions of ct-conekta-java Show documentation
This is a java library that allows interaction with https://api.conekta.io API.
The newest version!
/*
* Conekta API
* Conekta sdk
*
* The version of the OpenAPI document: 2.1.0
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.conekta.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.conekta.model.OrderResponse;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* GetOrdersResponse
*/
@JsonPropertyOrder({
GetOrdersResponse.JSON_PROPERTY_DATA,
GetOrdersResponse.JSON_PROPERTY_HAS_MORE,
GetOrdersResponse.JSON_PROPERTY_OBJECT,
GetOrdersResponse.JSON_PROPERTY_NEXT_PAGE_URL,
GetOrdersResponse.JSON_PROPERTY_PREVIOUS_PAGE_URL
})
@JsonTypeName("get_orders_response")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class GetOrdersResponse {
public static final String JSON_PROPERTY_DATA = "data";
private List data = new ArrayList<>();
public static final String JSON_PROPERTY_HAS_MORE = "has_more";
private Boolean hasMore;
public static final String JSON_PROPERTY_OBJECT = "object";
private String _object;
public static final String JSON_PROPERTY_NEXT_PAGE_URL = "next_page_url";
private String nextPageUrl;
public static final String JSON_PROPERTY_PREVIOUS_PAGE_URL = "previous_page_url";
private String previousPageUrl;
public GetOrdersResponse() {
}
public GetOrdersResponse data(List data) {
this.data = data;
return this;
}
public GetOrdersResponse addDataItem(OrderResponse dataItem) {
if (this.data == null) {
this.data = new ArrayList<>();
}
this.data.add(dataItem);
return this;
}
/**
* Get data
* @return data
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public List getData() {
return data;
}
@JsonProperty(JSON_PROPERTY_DATA)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setData(List data) {
this.data = data;
}
public GetOrdersResponse hasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
/**
* Indicates if there are more pages to be requested
* @return hasMore
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_HAS_MORE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public Boolean getHasMore() {
return hasMore;
}
@JsonProperty(JSON_PROPERTY_HAS_MORE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
}
public GetOrdersResponse _object(String _object) {
this._object = _object;
return this;
}
/**
* Object type, in this case is list
* @return _object
**/
@javax.annotation.Nonnull
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getObject() {
return _object;
}
@JsonProperty(JSON_PROPERTY_OBJECT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setObject(String _object) {
this._object = _object;
}
public GetOrdersResponse nextPageUrl(String nextPageUrl) {
this.nextPageUrl = nextPageUrl;
return this;
}
/**
* URL of the next page.
* @return nextPageUrl
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NEXT_PAGE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getNextPageUrl() {
return nextPageUrl;
}
@JsonProperty(JSON_PROPERTY_NEXT_PAGE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setNextPageUrl(String nextPageUrl) {
this.nextPageUrl = nextPageUrl;
}
public GetOrdersResponse previousPageUrl(String previousPageUrl) {
this.previousPageUrl = previousPageUrl;
return this;
}
/**
* Url of the previous page.
* @return previousPageUrl
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PREVIOUS_PAGE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPreviousPageUrl() {
return previousPageUrl;
}
@JsonProperty(JSON_PROPERTY_PREVIOUS_PAGE_URL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPreviousPageUrl(String previousPageUrl) {
this.previousPageUrl = previousPageUrl;
}
/**
* Return true if this get_orders_response object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetOrdersResponse getOrdersResponse = (GetOrdersResponse) o;
return Objects.equals(this.data, getOrdersResponse.data) &&
Objects.equals(this.hasMore, getOrdersResponse.hasMore) &&
Objects.equals(this._object, getOrdersResponse._object) &&
Objects.equals(this.nextPageUrl, getOrdersResponse.nextPageUrl) &&
Objects.equals(this.previousPageUrl, getOrdersResponse.previousPageUrl);
}
@Override
public int hashCode() {
return Objects.hash(data, hasMore, _object, nextPageUrl, previousPageUrl);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GetOrdersResponse {\n");
sb.append(" data: ").append(toIndentedString(data)).append("\n");
sb.append(" hasMore: ").append(toIndentedString(hasMore)).append("\n");
sb.append(" _object: ").append(toIndentedString(_object)).append("\n");
sb.append(" nextPageUrl: ").append(toIndentedString(nextPageUrl)).append("\n");
sb.append(" previousPageUrl: ").append(toIndentedString(previousPageUrl)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}