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

com.aliyun.dingtalkexclusive_1_0.models.FileStorageGetQuotaDataResponseBody 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 FileStorageGetQuotaDataResponseBody extends TeaModel {
    // 文件存储使用容量列表
    @NameInMap("quotaModelList")
    public java.util.List quotaModelList;

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

    public FileStorageGetQuotaDataResponseBody setQuotaModelList(java.util.List quotaModelList) {
        this.quotaModelList = quotaModelList;
        return this;
    }
    public java.util.List getQuotaModelList() {
        return this.quotaModelList;
    }

    public static class FileStorageGetQuotaDataResponseBodyQuotaModelList extends TeaModel {
        // 统计时间点
        @NameInMap("statisticTime")
        public String statisticTime;

        // 使用的容量(byte)
        @NameInMap("usedStorage")
        public Long usedStorage;

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

        public FileStorageGetQuotaDataResponseBodyQuotaModelList setStatisticTime(String statisticTime) {
            this.statisticTime = statisticTime;
            return this;
        }
        public String getStatisticTime() {
            return this.statisticTime;
        }

        public FileStorageGetQuotaDataResponseBodyQuotaModelList setUsedStorage(Long usedStorage) {
            this.usedStorage = usedStorage;
            return this;
        }
        public Long getUsedStorage() {
            return this.usedStorage;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy