com.aliyun.dingtalkdrive_1_0.models.GetQuotaInfosResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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 {
/**
* This parameter is required.
*/
@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;
}
}
}