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

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

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetDocCreatedSummaryResponseBody extends TeaModel {
    // 最近1天创建文档人数
    @NameInMap("docCreateUserCnt1d")
    public String docCreateUserCnt1d;

    // 最近1天创建文档数
    @NameInMap("docCreatedCnt")
    public String docCreatedCnt;

    public static GetDocCreatedSummaryResponseBody build(java.util.Map map) throws Exception {
        GetDocCreatedSummaryResponseBody self = new GetDocCreatedSummaryResponseBody();
        return TeaModel.build(map, self);
    }

    public GetDocCreatedSummaryResponseBody setDocCreateUserCnt1d(String docCreateUserCnt1d) {
        this.docCreateUserCnt1d = docCreateUserCnt1d;
        return this;
    }
    public String getDocCreateUserCnt1d() {
        return this.docCreateUserCnt1d;
    }

    public GetDocCreatedSummaryResponseBody setDocCreatedCnt(String docCreatedCnt) {
        this.docCreatedCnt = docCreatedCnt;
        return this;
    }
    public String getDocCreatedCnt() {
        return this.docCreatedCnt;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy