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

com.aliyun.dingtalkdrive_1_0.models.GetQuotaInfosResponseBody 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.dingtalkdrive_1_0.models;

import com.aliyun.tea.*;

public class GetQuotaInfosResponseBody extends TeaModel {
    // 容量信息列表
    @NameInMap("quotas")
    public java.util.List quotas;

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

    public GetQuotaInfosResponseBody setQuotas(java.util.List quotas) {
        this.quotas = quotas;
        return this;
    }
    public java.util.List getQuotas() {
        return this.quotas;
    }

    public static class GetQuotaInfosResponseBodyQuotas extends TeaModel {
        // 容量标识符
        @NameInMap("identifier")
        public String identifier;

        // 总容量
        @NameInMap("quota")
        public Long quota;

        // 容量类型
        @NameInMap("type")
        public String type;

        // 已使用容量
        @NameInMap("usedQuota")
        public Long usedQuota;

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

        public GetQuotaInfosResponseBodyQuotas setIdentifier(String identifier) {
            this.identifier = identifier;
            return this;
        }
        public String getIdentifier() {
            return this.identifier;
        }

        public GetQuotaInfosResponseBodyQuotas setQuota(Long quota) {
            this.quota = quota;
            return this;
        }
        public Long getQuota() {
            return this.quota;
        }

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

        public GetQuotaInfosResponseBodyQuotas setUsedQuota(Long usedQuota) {
            this.usedQuota = usedQuota;
            return this;
        }
        public Long getUsedQuota() {
            return this.usedQuota;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy