cn.authing.sdk.java.dto.GetDepartmentsOfPublicAccountDto 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 GetDepartmentsOfPublicAccountDto {
/**
* 用户唯一标志,可以是用户 ID、用户名、邮箱、手机号、外部 ID、在外部身份源的 ID。
*/
@JsonProperty("userId")
private String userId;
/**
* 用户 ID 类型,默认值为 `user_id`,可选值为:
* - `user_id`: Authing 用户 ID,如 `6319a1504f3xxxxf214dd5b7`
* - `phone`: 用户手机号
* - `email`: 用户邮箱
* - `username`: 用户名
* - `external_id`: 用户在外部系统的 ID,对应 Authing 用户信息的 `externalId` 字段
* - `identity`: 用户的外部身份源信息,格式为 `:`,其中 `` 为 Authing 身份源的 ID,`` 为用户在外部身份源的 ID。
* 示例值:`62f20932716fbcc10d966ee5:ou_8bae746eac07cd2564654140d2a9ac61`。
* - `sync_relation`: 用户的外部身份源信息,格式为 `:`,其中 `` 为同步身份源类型,如 wechatwork, lark;`` 为用户在外部身份源的 ID。
* 示例值:`lark:ou_8bae746eac07cd2564654140d2a9ac61`。
*
*/
@JsonProperty("userIdType")
private String userIdType;
/**
* 当前页数,从 1 开始
*/
@JsonProperty("page")
private Integer page;
/**
* 每页数目,最大不能超过 50,默认为 10
*/
@JsonProperty("limit")
private Integer limit;
/**
* 是否获取自定义数据
*/
@JsonProperty("withCustomData")
private Boolean withCustomData;
/**
* 是否获取部门路径
*/
@JsonProperty("withDepartmentPaths")
private Boolean withDepartmentPaths;
/**
* 排序依据,如 部门创建时间、加入部门时间、部门名称、部门标志符
*/
@JsonProperty("sortBy")
private String sortBy;
/**
* 增序或降序
*/
@JsonProperty("orderBy")
private String orderBy;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserIdType() {
return userIdType;
}
public void setUserIdType(String userIdType) {
this.userIdType = userIdType;
}
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 Boolean getWithCustomData() {
return withCustomData;
}
public void setWithCustomData(Boolean withCustomData) {
this.withCustomData = withCustomData;
}
public Boolean getWithDepartmentPaths() {
return withDepartmentPaths;
}
public void setWithDepartmentPaths(Boolean withDepartmentPaths) {
this.withDepartmentPaths = withDepartmentPaths;
}
public String getSortBy() {
return sortBy;
}
public void setSortBy(String sortBy) {
this.sortBy = sortBy;
}
public String getOrderBy() {
return orderBy;
}
public void setOrderBy(String orderBy) {
this.orderBy = orderBy;
}
}