com.conekta.model.Page 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.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.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.conekta.JSON;
/**
* page metadata
*/
@JsonPropertyOrder({
Page.JSON_PROPERTY_NEXT_PAGE_URL,
Page.JSON_PROPERTY_PREVIOUS_PAGE_URL
})
@JsonTypeName("page")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.5.0")
public class Page {
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 Page() {
}
public Page 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 Page 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 page object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Page page = (Page) o;
return Objects.equals(this.nextPageUrl, page.nextPageUrl) &&
Objects.equals(this.previousPageUrl, page.previousPageUrl);
}
@Override
public int hashCode() {
return Objects.hash(nextPageUrl, previousPageUrl);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Page {\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 ");
}
}