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

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

There is a newer version: 2.1.50
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 FileStorageGetQuotaDataRequest extends TeaModel {
    // 结束时间
    @NameInMap("endTime")
    public String endTime;

    // 开始时间
    @NameInMap("startTime")
    public String startTime;

    // 企业的corpId
    @NameInMap("targetCorpId")
    public String targetCorpId;

    // 查询类型 0按天查询;1按月查询
    @NameInMap("type")
    public String type;

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

    public FileStorageGetQuotaDataRequest setEndTime(String endTime) {
        this.endTime = endTime;
        return this;
    }
    public String getEndTime() {
        return this.endTime;
    }

    public FileStorageGetQuotaDataRequest setStartTime(String startTime) {
        this.startTime = startTime;
        return this;
    }
    public String getStartTime() {
        return this.startTime;
    }

    public FileStorageGetQuotaDataRequest setTargetCorpId(String targetCorpId) {
        this.targetCorpId = targetCorpId;
        return this;
    }
    public String getTargetCorpId() {
        return this.targetCorpId;
    }

    public FileStorageGetQuotaDataRequest setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy