com.aliyun.dingtalkcontact_1_0.models.SearchUserRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class SearchUserRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("fullMatchField")
public Integer fullMatchField;
/**
* 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 SearchUserRequest build(java.util.Map map) throws Exception {
SearchUserRequest self = new SearchUserRequest();
return TeaModel.build(map, self);
}
public SearchUserRequest setFullMatchField(Integer fullMatchField) {
this.fullMatchField = fullMatchField;
return this;
}
public Integer getFullMatchField() {
return this.fullMatchField;
}
public SearchUserRequest setOffset(Integer offset) {
this.offset = offset;
return this;
}
public Integer getOffset() {
return this.offset;
}
public SearchUserRequest setQueryWord(String queryWord) {
this.queryWord = queryWord;
return this;
}
public String getQueryWord() {
return this.queryWord;
}
public SearchUserRequest setSize(Integer size) {
this.size = size;
return this;
}
public Integer getSize() {
return this.size;
}
}