All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.GetGeneralFormCreatedSummaryResponseBody Maven / Gradle / Ivy

// 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 {
    // 最近1天智能填表创建数
    @NameInMap("generalFormCreatedCnt")
    public String generalFormCreatedCnt;

    // 最近1天使用智能填表人数
    @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 - 2024 Weber Informatics LLC | Privacy Policy