com.aliyun.dingtalkservice_group_1_0.models.ReportCustomerStatisticsRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class ReportCustomerStatisticsRequest extends TeaModel {
/**
* if can be null:
* true
*/
@NameInMap("groupOwnerUserIds")
public java.util.List groupOwnerUserIds;
/**
* if can be null:
* true
*/
@NameInMap("groupTags")
public java.util.List groupTags;
/**
* This parameter is required.
*
* example:
* 20220102
*/
@NameInMap("maxDt")
public String maxDt;
/**
* This parameter is required.
*
* example:
* 20220101
*/
@NameInMap("minDt")
public String minDt;
/**
* if can be null:
* true
*/
@NameInMap("openConversationIds")
public java.util.List openConversationIds;
/**
* example:
* iFoqrhLQDtK
*/
@NameInMap("openGroupSetId")
public String openGroupSetId;
/**
* This parameter is required.
*
* example:
* iSoqrhLQDtK
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("pageSize")
public Long pageSize;
public static ReportCustomerStatisticsRequest build(java.util.Map map) throws Exception {
ReportCustomerStatisticsRequest self = new ReportCustomerStatisticsRequest();
return TeaModel.build(map, self);
}
public ReportCustomerStatisticsRequest setGroupOwnerUserIds(java.util.List groupOwnerUserIds) {
this.groupOwnerUserIds = groupOwnerUserIds;
return this;
}
public java.util.List getGroupOwnerUserIds() {
return this.groupOwnerUserIds;
}
public ReportCustomerStatisticsRequest setGroupTags(java.util.List groupTags) {
this.groupTags = groupTags;
return this;
}
public java.util.List getGroupTags() {
return this.groupTags;
}
public ReportCustomerStatisticsRequest setMaxDt(String maxDt) {
this.maxDt = maxDt;
return this;
}
public String getMaxDt() {
return this.maxDt;
}
public ReportCustomerStatisticsRequest setMinDt(String minDt) {
this.minDt = minDt;
return this;
}
public String getMinDt() {
return this.minDt;
}
public ReportCustomerStatisticsRequest setOpenConversationIds(java.util.List openConversationIds) {
this.openConversationIds = openConversationIds;
return this;
}
public java.util.List getOpenConversationIds() {
return this.openConversationIds;
}
public ReportCustomerStatisticsRequest setOpenGroupSetId(String openGroupSetId) {
this.openGroupSetId = openGroupSetId;
return this;
}
public String getOpenGroupSetId() {
return this.openGroupSetId;
}
public ReportCustomerStatisticsRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public ReportCustomerStatisticsRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ReportCustomerStatisticsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}