com.aliyun.dingtalkexclusive_1_0.models.GetGeneralFormCreatedDeptSummaryResponseBody 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 GetGeneralFormCreatedDeptSummaryResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List data;
/**
* example:
* false
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* example:
* 2
*/
@NameInMap("nextToken")
public Long nextToken;
public static GetGeneralFormCreatedDeptSummaryResponseBody build(java.util.Map map) throws Exception {
GetGeneralFormCreatedDeptSummaryResponseBody self = new GetGeneralFormCreatedDeptSummaryResponseBody();
return TeaModel.build(map, self);
}
public GetGeneralFormCreatedDeptSummaryResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public GetGeneralFormCreatedDeptSummaryResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetGeneralFormCreatedDeptSummaryResponseBody setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public static class GetGeneralFormCreatedDeptSummaryResponseBodyData extends TeaModel {
/**
* example:
* 123
*/
@NameInMap("deptId")
public String deptId;
/**
* example:
* 部门A
*/
@NameInMap("deptName")
public String deptName;
/**
* example:
* 100
*/
@NameInMap("generalFormCreateCnt1d")
public String generalFormCreateCnt1d;
/**
* example:
* 100
*/
@NameInMap("useGeneralFormUserCnt1d")
public String useGeneralFormUserCnt1d;
public static GetGeneralFormCreatedDeptSummaryResponseBodyData build(java.util.Map map) throws Exception {
GetGeneralFormCreatedDeptSummaryResponseBodyData self = new GetGeneralFormCreatedDeptSummaryResponseBodyData();
return TeaModel.build(map, self);
}
public GetGeneralFormCreatedDeptSummaryResponseBodyData setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
public GetGeneralFormCreatedDeptSummaryResponseBodyData setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetGeneralFormCreatedDeptSummaryResponseBodyData setGeneralFormCreateCnt1d(String generalFormCreateCnt1d) {
this.generalFormCreateCnt1d = generalFormCreateCnt1d;
return this;
}
public String getGeneralFormCreateCnt1d() {
return this.generalFormCreateCnt1d;
}
public GetGeneralFormCreatedDeptSummaryResponseBodyData setUseGeneralFormUserCnt1d(String useGeneralFormUserCnt1d) {
this.useGeneralFormUserCnt1d = useGeneralFormUserCnt1d;
return this;
}
public String getUseGeneralFormUserCnt1d() {
return this.useGeneralFormUserCnt1d;
}
}
}