com.aliyun.dingtalkexclusive_1_0.models.GetGroupActiveInfoRequest 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 GetGroupActiveInfoRequest extends TeaModel {
/**
* example:
* cidV3xxxrSuxxxxxxnB8o8gJw==
*/
@NameInMap("dingGroupId")
public String dingGroupId;
/**
* example:
* 1
*/
@NameInMap("groupType")
public Long groupType;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*
* example:
* 20200305
*/
@NameInMap("statDate")
public String statDate;
public static GetGroupActiveInfoRequest build(java.util.Map map) throws Exception {
GetGroupActiveInfoRequest self = new GetGroupActiveInfoRequest();
return TeaModel.build(map, self);
}
public GetGroupActiveInfoRequest setDingGroupId(String dingGroupId) {
this.dingGroupId = dingGroupId;
return this;
}
public String getDingGroupId() {
return this.dingGroupId;
}
public GetGroupActiveInfoRequest setGroupType(Long groupType) {
this.groupType = groupType;
return this;
}
public Long getGroupType() {
return this.groupType;
}
public GetGroupActiveInfoRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetGroupActiveInfoRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetGroupActiveInfoRequest setStatDate(String statDate) {
this.statDate = statDate;
return this;
}
public String getStatDate() {
return this.statDate;
}
}