com.volcengine.billing.model.ListBillDetailResponse Maven / Gradle / Ivy
/*
* billing
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: common-version
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package com.volcengine.billing.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 com.volcengine.billing.model.ListForListBillDetailOutput;
import io.swagger.v3.oas.annotations.media.Schema;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import javax.validation.constraints.*;
import javax.validation.Valid;
/**
* ListBillDetailResponse
*/
public class ListBillDetailResponse extends com.volcengine.model.AbstractResponse {
@SerializedName("Limit")
private Integer limit = null;
@SerializedName("List")
private List list = null;
@SerializedName("Offset")
private Integer offset = null;
@SerializedName("Total")
private Integer total = null;
public ListBillDetailResponse limit(Integer limit) {
this.limit = limit;
return this;
}
/**
* Get limit
* @return limit
**/
@Schema(description = "")
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public ListBillDetailResponse list(List list) {
this.list = list;
return this;
}
public ListBillDetailResponse addListItem(ListForListBillDetailOutput listItem) {
if (this.list == null) {
this.list = new ArrayList();
}
this.list.add(listItem);
return this;
}
/**
* Get list
* @return list
**/
@Valid
@Schema(description = "")
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public ListBillDetailResponse offset(Integer offset) {
this.offset = offset;
return this;
}
/**
* Get offset
* @return offset
**/
@Schema(description = "")
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public ListBillDetailResponse total(Integer total) {
this.total = total;
return this;
}
/**
* Get total
* @return total
**/
@Schema(description = "")
public Integer getTotal() {
return total;
}
public void setTotal(Integer total) {
this.total = total;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ListBillDetailResponse listBillDetailResponse = (ListBillDetailResponse) o;
return Objects.equals(this.limit, listBillDetailResponse.limit) &&
Objects.equals(this.list, listBillDetailResponse.list) &&
Objects.equals(this.offset, listBillDetailResponse.offset) &&
Objects.equals(this.total, listBillDetailResponse.total);
}
@Override
public int hashCode() {
return Objects.hash(limit, list, offset, total);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListBillDetailResponse {\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append(" list: ").append(toIndentedString(list)).append("\n");
sb.append(" offset: ").append(toIndentedString(offset)).append("\n");
sb.append(" total: ").append(toIndentedString(total)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}