cn.authing.sdk.java.dto.GetDenfListRespDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of authing-java-sdk Show documentation
Show all versions of authing-java-sdk Show documentation
java backend sdk for authing
package cn.authing.sdk.java.dto;
import java.util.List;
/**
* 数据资源扩展字段列表
*/
public class GetDenfListRespDto {
/**
* 下一页开始的索引,当最后一页时返回 -1
*/
private Integer nextStartIndex;
/**
* 是否被截断,true 表示可以查询下一页,false 表示是最后一页数据
*/
private Boolean truncated;
/**
* 扩展字段列表
*/
private List list;
public Integer getNextStartIndex() {
return nextStartIndex;
}
public void setNextStartIndex(Integer nextStartIndex) {
this.nextStartIndex = nextStartIndex;
}
public Boolean getTruncated() {
return truncated;
}
public void setTruncated(Boolean truncated) {
this.truncated = truncated;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
}