com.aliyun.datahub.client.model.ListTopicSchemaResult Maven / Gradle / Ivy
The newest version!
package com.aliyun.datahub.client.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public class ListTopicSchemaResult extends BaseResult {
@JsonProperty("PageNumber")
private int pageNumber;
@JsonProperty("PageSize")
private int pageSize;
@JsonProperty("PageCount")
private int pageCount;
@JsonProperty("TotalCount")
private int totalCount;
@JsonProperty("RecordSchemaList")
private List recordSchemaInfoList;
public int getPageNumber() {
return pageNumber;
}
public void setPageNumber(int pageNumber) {
this.pageNumber = pageNumber;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPageCount() {
return pageCount;
}
public void setPageCount(int pageCount) {
this.pageCount = pageCount;
}
public int getTotalCount() {
return totalCount;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public List getRecordSchemaInfoList() {
return recordSchemaInfoList;
}
public void setRecordSchemaInfoList(List recordSchemaInfoList) {
this.recordSchemaInfoList = recordSchemaInfoList;
}
}