![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkdrive_1_0.models.GetQuotaInfosRequest 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 GetQuotaInfosRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("identifiers")
public java.util.List identifiers;
/**
* This parameter is required.
*/
@NameInMap("type")
public String type;
/**
* This parameter is required.
*/
@NameInMap("unionId")
public String unionId;
public static GetQuotaInfosRequest build(java.util.Map map) throws Exception {
GetQuotaInfosRequest self = new GetQuotaInfosRequest();
return TeaModel.build(map, self);
}
public GetQuotaInfosRequest setIdentifiers(java.util.List identifiers) {
this.identifiers = identifiers;
return this;
}
public java.util.List getIdentifiers() {
return this.identifiers;
}
public GetQuotaInfosRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetQuotaInfosRequest setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy