com.aliyun.dingtalkdoc_2_0.models.ListFeedsRequest 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class ListFeedsRequest extends TeaModel {
@NameInMap("excludeFile")
public Boolean excludeFile;
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* abcd
*/
@NameInMap("operatorId")
public String operatorId;
public static ListFeedsRequest build(java.util.Map map) throws Exception {
ListFeedsRequest self = new ListFeedsRequest();
return TeaModel.build(map, self);
}
public ListFeedsRequest setExcludeFile(Boolean excludeFile) {
this.excludeFile = excludeFile;
return this;
}
public Boolean getExcludeFile() {
return this.excludeFile;
}
public ListFeedsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListFeedsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListFeedsRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}