cn.authing.sdk.java.dto.ListTenantUsersOptionsDto 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;
import cn.authing.sdk.java.dto.PaginationDto;
public class ListTenantUsersOptionsDto {
/**
* 分页配置
*/
@JsonProperty("pagination")
private PaginationDto pagination;
/**
* 是否获取部门 ID 列表
*/
@JsonProperty("withDepartmentIds")
private Boolean withDepartmentIds;
public PaginationDto getPagination() {
return pagination;
}
public void setPagination(PaginationDto pagination) {
this.pagination = pagination;
}
public Boolean getWithDepartmentIds() {
return withDepartmentIds;
}
public void setWithDepartmentIds(Boolean withDepartmentIds) {
this.withDepartmentIds = withDepartmentIds;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy