cn.authing.sdk.java.dto.ListUsersDto 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;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ListUsersDto {
/**
* 当前页数,从 1 开始
*/
@JsonProperty("page")
private Integer page;
/**
* 每页数目,最大不能超过 50,默认为 10
*/
@JsonProperty("limit")
private Integer limit;
/**
* 账户当前状态,如 已停用、已离职、正常状态、已归档
*/
@JsonProperty("status")
private String status;
/**
* 用户创建、修改开始时间,为精确到秒的 UNIX 时间戳;支持获取从某一段时间之后的增量数据
*/
@JsonProperty("updatedAtStart")
private Integer updatedAtStart;
/**
* 用户创建、修改终止时间,为精确到秒的 UNIX 时间戳;支持获取某一段时间内的增量数据。默认为当前时间
*/
@JsonProperty("updatedAtEnd")
private Integer updatedAtEnd;
/**
* 是否获取自定义数据
*/
@JsonProperty("withCustomData")
private Boolean withCustomData;
/**
* 是否获取 部门信息
*/
@JsonProperty("withPost")
private Boolean withPost;
/**
* 是否获取 identities
*/
@JsonProperty("withIdentities")
private Boolean withIdentities;
/**
* 是否获取部门 ID 列表
*/
@JsonProperty("withDepartmentIds")
private Boolean withDepartmentIds;
public Integer getPage() {
return page;
}
public void setPage(Integer page) {
this.page = page;
}
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public Integer getUpdatedAtStart() {
return updatedAtStart;
}
public void setUpdatedAtStart(Integer updatedAtStart) {
this.updatedAtStart = updatedAtStart;
}
public Integer getUpdatedAtEnd() {
return updatedAtEnd;
}
public void setUpdatedAtEnd(Integer updatedAtEnd) {
this.updatedAtEnd = updatedAtEnd;
}
public Boolean getWithCustomData() {
return withCustomData;
}
public void setWithCustomData(Boolean withCustomData) {
this.withCustomData = withCustomData;
}
public Boolean getWithPost() {
return withPost;
}
public void setWithPost(Boolean withPost) {
this.withPost = withPost;
}
public Boolean getWithIdentities() {
return withIdentities;
}
public void setWithIdentities(Boolean withIdentities) {
this.withIdentities = withIdentities;
}
public Boolean getWithDepartmentIds() {
return withDepartmentIds;
}
public void setWithDepartmentIds(Boolean withDepartmentIds) {
this.withDepartmentIds = withDepartmentIds;
}
}