com.dingtalk.api.request.OapiUserSimplelistRequest Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.request;
import java.util.Map;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.dingtalk.api.DingTalkConstants;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.internal.util.TaobaoUtils;
import com.dingtalk.api.response.OapiUserSimplelistResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.user.simplelist request
*
* @author top auto create
* @since 1.0, 2018.08.13
*/
public class OapiUserSimplelistRequest extends BaseTaobaoRequest {
/**
* 获取的部门id
*/
private Long departmentId;
/**
* 通讯录语言(默认zh_CN另外支持en_US)
*/
private String lang;
/**
* 支持分页查询,与size参数同时设置时才生效,此参数代表偏移量
*/
private Long offset;
/**
* 支持分页查询,部门成员的排序规则,默认不传是按自定义排序;entry_asc代表按照进入部门的时间升序,entry_desc代表按照进入部门的时间降序,modify_asc代表按照部门信息修改时间升序,modify_desc代表按照部门信息修改时间降序,custom代表用户定义(未定义时按照拼音)排序
*/
private String order;
/**
* 支持分页查询,与offset参数同时设置时才生效,此参数代表分页大小,最大100
*/
private Long size;
public void setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
}
public Long getDepartmentId() {
return this.departmentId;
}
public void setLang(String lang) {
this.lang = lang;
}
public String getLang() {
return this.lang;
}
public void setOffset(Long offset) {
this.offset = offset;
}
public Long getOffset() {
return this.offset;
}
public void setOrder(String order) {
this.order = order;
}
public String getOrder() {
return this.order;
}
public void setSize(Long size) {
this.size = size;
}
public Long getSize() {
return this.size;
}
public String getApiMethodName() {
return "dingtalk.oapi.user.simplelist";
}
private String topResponseType = Constants.RESPONSE_TYPE_DINGTALK_OAPI;
public String getTopResponseType() {
return this.topResponseType;
}
public void setTopResponseType(String topResponseType) {
this.topResponseType = topResponseType;
}
public String getTopApiCallType() {
return DingTalkConstants.CALL_TYPE_OAPI;
}
private String topHttpMethod = DingTalkConstants.HTTP_METHOD_GET;
public String getTopHttpMethod() {
return this.topHttpMethod;
}
public void setTopHttpMethod(String topHttpMethod) {
this.topHttpMethod = topHttpMethod;
}
public void setHttpMethod(String httpMethod) {
this.setTopHttpMethod(httpMethod);
}
public Map getTextParams() {
TaobaoHashMap txtParams = new TaobaoHashMap();
txtParams.put("department_id", this.departmentId);
txtParams.put("lang", this.lang);
txtParams.put("offset", this.offset);
txtParams.put("order", this.order);
txtParams.put("size", this.size);
if(this.udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public Class getResponseClass() {
return OapiUserSimplelistResponse.class;
}
public void check() throws ApiRuleException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy