com.aliyun.dingtalkexclusive_1_0.models.GetPublisherSummaryResponseBody 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 GetPublisherSummaryResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List data;
/**
* example:
* false
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* example:
* 2
*/
@NameInMap("nextToken")
public Long nextToken;
/**
* example:
* 100
*/
@NameInMap("publisherArticleCntStd")
public String publisherArticleCntStd;
/**
* example:
* 100
*/
@NameInMap("publisherArticlePvCntStd")
public String publisherArticlePvCntStd;
/**
* example:
* 阅读量最高文章,阅读量第二高文章
*/
@NameInMap("publisherArticlePvTop5")
public java.util.List publisherArticlePvTop5;
/**
* example:
* 100
*/
@NameInMap("publisherCntStd")
public String publisherCntStd;
public static GetPublisherSummaryResponseBody build(java.util.Map map) throws Exception {
GetPublisherSummaryResponseBody self = new GetPublisherSummaryResponseBody();
return TeaModel.build(map, self);
}
public GetPublisherSummaryResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public GetPublisherSummaryResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetPublisherSummaryResponseBody setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public GetPublisherSummaryResponseBody setPublisherArticleCntStd(String publisherArticleCntStd) {
this.publisherArticleCntStd = publisherArticleCntStd;
return this;
}
public String getPublisherArticleCntStd() {
return this.publisherArticleCntStd;
}
public GetPublisherSummaryResponseBody setPublisherArticlePvCntStd(String publisherArticlePvCntStd) {
this.publisherArticlePvCntStd = publisherArticlePvCntStd;
return this;
}
public String getPublisherArticlePvCntStd() {
return this.publisherArticlePvCntStd;
}
public GetPublisherSummaryResponseBody setPublisherArticlePvTop5(java.util.List publisherArticlePvTop5) {
this.publisherArticlePvTop5 = publisherArticlePvTop5;
return this;
}
public java.util.List getPublisherArticlePvTop5() {
return this.publisherArticlePvTop5;
}
public GetPublisherSummaryResponseBody setPublisherCntStd(String publisherCntStd) {
this.publisherCntStd = publisherCntStd;
return this;
}
public String getPublisherCntStd() {
return this.publisherCntStd;
}
public static class GetPublisherSummaryResponseBodyData extends TeaModel {
/**
* example:
* 100
*/
@NameInMap("publisherArticleCntStd")
public String publisherArticleCntStd;
/**
* example:
* 100
*/
@NameInMap("publisherArticlePvCntStd")
public String publisherArticlePvCntStd;
/**
* example:
* 服务窗1
*/
@NameInMap("publisherName")
public String publisherName;
/**
* example:
* 123
*/
@NameInMap("unionId")
public String unionId;
public static GetPublisherSummaryResponseBodyData build(java.util.Map map) throws Exception {
GetPublisherSummaryResponseBodyData self = new GetPublisherSummaryResponseBodyData();
return TeaModel.build(map, self);
}
public GetPublisherSummaryResponseBodyData setPublisherArticleCntStd(String publisherArticleCntStd) {
this.publisherArticleCntStd = publisherArticleCntStd;
return this;
}
public String getPublisherArticleCntStd() {
return this.publisherArticleCntStd;
}
public GetPublisherSummaryResponseBodyData setPublisherArticlePvCntStd(String publisherArticlePvCntStd) {
this.publisherArticlePvCntStd = publisherArticlePvCntStd;
return this;
}
public String getPublisherArticlePvCntStd() {
return this.publisherArticlePvCntStd;
}
public GetPublisherSummaryResponseBodyData setPublisherName(String publisherName) {
this.publisherName = publisherName;
return this;
}
public String getPublisherName() {
return this.publisherName;
}
public GetPublisherSummaryResponseBodyData setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
public static class GetPublisherSummaryResponseBodyPublisherArticlePvTop5 extends TeaModel {
/**
* example:
* 文章1
*/
@NameInMap("name")
public String name;
public static GetPublisherSummaryResponseBodyPublisherArticlePvTop5 build(java.util.Map map) throws Exception {
GetPublisherSummaryResponseBodyPublisherArticlePvTop5 self = new GetPublisherSummaryResponseBodyPublisherArticlePvTop5();
return TeaModel.build(map, self);
}
public GetPublisherSummaryResponseBodyPublisherArticlePvTop5 setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}