com.aliyun.dingtalkpedia_1_0.models.PediaWordsSearchRequest 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.dingtalkpedia_1_0.models;
import com.aliyun.tea.*;
public class PediaWordsSearchRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("status")
public String status;
/**
* This parameter is required.
*
* example:
* 121213213
*/
@NameInMap("userId")
public String userId;
/**
* example:
* 企业百科
*
* if can be null:
* false
*/
@NameInMap("wordName")
public String wordName;
public static PediaWordsSearchRequest build(java.util.Map map) throws Exception {
PediaWordsSearchRequest self = new PediaWordsSearchRequest();
return TeaModel.build(map, self);
}
public PediaWordsSearchRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public PediaWordsSearchRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public PediaWordsSearchRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public PediaWordsSearchRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public PediaWordsSearchRequest setWordName(String wordName) {
this.wordName = wordName;
return this;
}
public String getWordName() {
return this.wordName;
}
}