
com.aliyun.dingtalkcontact_1_0.models.SearchDepartmentRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class SearchDepartmentRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("offset")
public Integer offset;
/**
* This parameter is required.
*
* example:
* 财务部
*/
@NameInMap("queryWord")
public String queryWord;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("size")
public Integer size;
public static SearchDepartmentRequest build(java.util.Map map) throws Exception {
SearchDepartmentRequest self = new SearchDepartmentRequest();
return TeaModel.build(map, self);
}
public SearchDepartmentRequest setOffset(Integer offset) {
this.offset = offset;
return this;
}
public Integer getOffset() {
return this.offset;
}
public SearchDepartmentRequest setQueryWord(String queryWord) {
this.queryWord = queryWord;
return this;
}
public String getQueryWord() {
return this.queryWord;
}
public SearchDepartmentRequest setSize(Integer size) {
this.size = size;
return this;
}
public Integer getSize() {
return this.size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy