com.antgroup.antchain.openapi.acm.models.GetTenantIaasaccountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-acm Show documentation
Show all versions of openapi-acm Show documentation
Ant Chain acm SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.acm.models;
import com.aliyun.tea.*;
public class GetTenantIaasaccountRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// 租户唯一标识
@NameInMap("tenant")
@Validation(required = true)
public String tenant;
public static GetTenantIaasaccountRequest build(java.util.Map map) throws Exception {
GetTenantIaasaccountRequest self = new GetTenantIaasaccountRequest();
return TeaModel.build(map, self);
}
public GetTenantIaasaccountRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetTenantIaasaccountRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
}