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

com.aliyun.dytnsapi20200217.models.QueryAvailableAuthCodeRequest Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
// 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