com.aliyun.dingtalkexclusive_1_0.models.GetPublisherSummaryRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetPublisherSummaryRequest extends TeaModel {
// 每页包含的数据条数
@NameInMap("maxResults")
public Long maxResults;
// 启始数据游标
@NameInMap("nextToken")
public Long nextToken;
public static GetPublisherSummaryRequest build(java.util.Map map) throws Exception {
GetPublisherSummaryRequest self = new GetPublisherSummaryRequest();
return TeaModel.build(map, self);
}
public GetPublisherSummaryRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public GetPublisherSummaryRequest setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
}