com.aliyun.dingtalkresident_1_0.models.SearchResidentRequest 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class SearchResidentRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("residentCropId")
public String residentCropId;
/**
* This parameter is required.
*/
@NameInMap("searchWord")
public String searchWord;
public static SearchResidentRequest build(java.util.Map map) throws Exception {
SearchResidentRequest self = new SearchResidentRequest();
return TeaModel.build(map, self);
}
public SearchResidentRequest setResidentCropId(String residentCropId) {
this.residentCropId = residentCropId;
return this;
}
public String getResidentCropId() {
return this.residentCropId;
}
public SearchResidentRequest setSearchWord(String searchWord) {
this.searchWord = searchWord;
return this;
}
public String getSearchWord() {
return this.searchWord;
}
}