com.aliyun.dingtalkindustry_1_0.models.ChatMemoFaqListRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class ChatMemoFaqListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 111111
*/
@NameInMap("datasetId")
public Long datasetId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("pageSize")
public Long pageSize;
public static ChatMemoFaqListRequest build(java.util.Map map) throws Exception {
ChatMemoFaqListRequest self = new ChatMemoFaqListRequest();
return TeaModel.build(map, self);
}
public ChatMemoFaqListRequest setDatasetId(Long datasetId) {
this.datasetId = datasetId;
return this;
}
public Long getDatasetId() {
return this.datasetId;
}
public ChatMemoFaqListRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ChatMemoFaqListRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}