com.aliyun.dytnsapi20200217.models.QueryAvailableAuthCodeRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dytnsapi20200217 Show documentation
Show all versions of dytnsapi20200217 Show documentation
Alibaba Cloud Dytnsapi (20200217) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dytnsapi20200217.models;
import com.aliyun.tea.*;
public class QueryAvailableAuthCodeRequest extends TeaModel {
@NameInMap("OwnerId")
public Long ownerId;
@NameInMap("ResourceOwnerAccount")
public String resourceOwnerAccount;
@NameInMap("ResourceOwnerId")
public Long resourceOwnerId;
/**
* The tag ID.
*/
@NameInMap("TagId")
public Long tagId;
public static QueryAvailableAuthCodeRequest build(java.util.Map map) throws Exception {
QueryAvailableAuthCodeRequest self = new QueryAvailableAuthCodeRequest();
return TeaModel.build(map, self);
}
public QueryAvailableAuthCodeRequest setOwnerId(Long ownerId) {
this.ownerId = ownerId;
return this;
}
public Long getOwnerId() {
return this.ownerId;
}
public QueryAvailableAuthCodeRequest setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
return this;
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public QueryAvailableAuthCodeRequest setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
return this;
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public QueryAvailableAuthCodeRequest setTagId(Long tagId) {
this.tagId = tagId;
return this;
}
public Long getTagId() {
return this.tagId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy