com.aliyun.dingtalkcontent_1_0.models.PageFeedRequest 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.dingtalkcontent_1_0.models;
import com.aliyun.tea.*;
public class PageFeedRequest extends TeaModel {
@NameInMap("body")
public java.util.List body;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*
* example:
* 50730********40554
*/
@NameInMap("mcnId")
public String mcnId;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("nextToken")
public Integer nextToken;
public static PageFeedRequest build(java.util.Map map) throws Exception {
PageFeedRequest self = new PageFeedRequest();
return TeaModel.build(map, self);
}
public PageFeedRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
public PageFeedRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public PageFeedRequest setMcnId(String mcnId) {
this.mcnId = mcnId;
return this;
}
public String getMcnId() {
return this.mcnId;
}
public PageFeedRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
}