com.aliyun.dingtalkedu_1_0.models.SearchTeachersRequest 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class SearchTeachersRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 李
*/
@NameInMap("nameKeyword")
public String nameKeyword;
public static SearchTeachersRequest build(java.util.Map map) throws Exception {
SearchTeachersRequest self = new SearchTeachersRequest();
return TeaModel.build(map, self);
}
public SearchTeachersRequest setNameKeyword(String nameKeyword) {
this.nameKeyword = nameKeyword;
return this;
}
public String getNameKeyword() {
return this.nameKeyword;
}
}