io.harness.cf.model.Pagination Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ff-java-server-sdk Show documentation
Show all versions of ff-java-server-sdk Show documentation
Harness Feature Flag Java Server SDK
The newest version!
/*
* Harness feature flag service client apis
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.0.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 io.harness.cf.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.io.Serializable;
import lombok.Builder;
import lombok.NoArgsConstructor;
import lombok.AllArgsConstructor;
/**
* Pagination
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T14:30:44.890314Z[GMT]")
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class Pagination implements Serializable {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_VERSION = "version";
@SerializedName(SERIALIZED_NAME_VERSION)
private Integer version;
public static final String SERIALIZED_NAME_PAGE_COUNT = "pageCount";
@SerializedName(SERIALIZED_NAME_PAGE_COUNT)
private Integer pageCount;
public static final String SERIALIZED_NAME_ITEM_COUNT = "itemCount";
@SerializedName(SERIALIZED_NAME_ITEM_COUNT)
private Integer itemCount;
public static final String SERIALIZED_NAME_PAGE_SIZE = "pageSize";
@SerializedName(SERIALIZED_NAME_PAGE_SIZE)
private Integer pageSize;
public static final String SERIALIZED_NAME_PAGE_INDEX = "pageIndex";
@SerializedName(SERIALIZED_NAME_PAGE_INDEX)
private Integer pageIndex;
public Pagination version(Integer version) {
this.version = version;
return this;
}
/**
* The version of this object. The version will be incremented each time the object is modified
* @return version
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "5", value = "The version of this object. The version will be incremented each time the object is modified")
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
public Pagination pageCount(Integer pageCount) {
this.pageCount = pageCount;
return this;
}
/**
* The total number of pages
* @return pageCount
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "100", required = true, value = "The total number of pages")
public Integer getPageCount() {
return pageCount;
}
public void setPageCount(Integer pageCount) {
this.pageCount = pageCount;
}
public Pagination itemCount(Integer itemCount) {
this.itemCount = itemCount;
return this;
}
/**
* The total number of items
* @return itemCount
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1", required = true, value = "The total number of items")
public Integer getItemCount() {
return itemCount;
}
public void setItemCount(Integer itemCount) {
this.itemCount = itemCount;
}
public Pagination pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* The number of items per page
* @return pageSize
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "1", required = true, value = "The number of items per page")
public Integer getPageSize() {
return pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Pagination pageIndex(Integer pageIndex) {
this.pageIndex = pageIndex;
return this;
}
/**
* The current page
* @return pageIndex
**/
@javax.annotation.Nonnull
@ApiModelProperty(example = "0", required = true, value = "The current page")
public Integer getPageIndex() {
return pageIndex;
}
public void setPageIndex(Integer pageIndex) {
this.pageIndex = pageIndex;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Pagination pagination = (Pagination) o;
return Objects.equals(this.version, pagination.version) &&
Objects.equals(this.pageCount, pagination.pageCount) &&
Objects.equals(this.itemCount, pagination.itemCount) &&
Objects.equals(this.pageSize, pagination.pageSize) &&
Objects.equals(this.pageIndex, pagination.pageIndex);
}
@Override
public int hashCode() {
return Objects.hash(version, pageCount, itemCount, pageSize, pageIndex);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Pagination {\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append(" pageCount: ").append(toIndentedString(pageCount)).append("\n");
sb.append(" itemCount: ").append(toIndentedString(itemCount)).append("\n");
sb.append(" pageSize: ").append(toIndentedString(pageSize)).append("\n");
sb.append(" pageIndex: ").append(toIndentedString(pageIndex)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy