![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetGeneralFormCreatedSummaryResponseBody 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 GetGeneralFormCreatedSummaryResponseBody extends TeaModel {
/**
* example:
* 100
*/
@NameInMap("generalFormCreatedCnt")
public String generalFormCreatedCnt;
/**
* example:
* 100
*/
@NameInMap("useGeneralFormUserCnt1d")
public String useGeneralFormUserCnt1d;
public static GetGeneralFormCreatedSummaryResponseBody build(java.util.Map map) throws Exception {
GetGeneralFormCreatedSummaryResponseBody self = new GetGeneralFormCreatedSummaryResponseBody();
return TeaModel.build(map, self);
}
public GetGeneralFormCreatedSummaryResponseBody setGeneralFormCreatedCnt(String generalFormCreatedCnt) {
this.generalFormCreatedCnt = generalFormCreatedCnt;
return this;
}
public String getGeneralFormCreatedCnt() {
return this.generalFormCreatedCnt;
}
public GetGeneralFormCreatedSummaryResponseBody setUseGeneralFormUserCnt1d(String useGeneralFormUserCnt1d) {
this.useGeneralFormUserCnt1d = useGeneralFormUserCnt1d;
return this;
}
public String getUseGeneralFormUserCnt1d() {
return this.useGeneralFormUserCnt1d;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy