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

com.aliyun.dyplsapi20170525.models.UnlockSecretNoRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyplsapi20170525.models;

import com.aliyun.tea.*;

public class UnlockSecretNoRequest extends TeaModel {
    @NameInMap("OwnerId")
    public Long ownerId;

    /**
     * 

The key of the phone number pool.

*

Log on to the Phone Number Protection console and view the key of the phone number pool on the Number Pool Management page.

*

This parameter is required.

* * example: *

FC2256****

*/ @NameInMap("PoolKey") public String poolKey; @NameInMap("ResourceOwnerAccount") public String resourceOwnerAccount; @NameInMap("ResourceOwnerId") public Long resourceOwnerId; /** *

The private number that you want to unlock. You must enter a complete mobile phone number.

*

This parameter is required.

* * example: *

1300000****

*/ @NameInMap("SecretNo") public String secretNo; public static UnlockSecretNoRequest build(java.util.Map map) throws Exception { UnlockSecretNoRequest self = new UnlockSecretNoRequest(); return TeaModel.build(map, self); } public UnlockSecretNoRequest setOwnerId(Long ownerId) { this.ownerId = ownerId; return this; } public Long getOwnerId() { return this.ownerId; } public UnlockSecretNoRequest setPoolKey(String poolKey) { this.poolKey = poolKey; return this; } public String getPoolKey() { return this.poolKey; } public UnlockSecretNoRequest setResourceOwnerAccount(String resourceOwnerAccount) { this.resourceOwnerAccount = resourceOwnerAccount; return this; } public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } public UnlockSecretNoRequest setResourceOwnerId(Long resourceOwnerId) { this.resourceOwnerId = resourceOwnerId; return this; } public Long getResourceOwnerId() { return this.resourceOwnerId; } public UnlockSecretNoRequest setSecretNo(String secretNo) { this.secretNo = secretNo; return this; } public String getSecretNo() { return this.secretNo; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy