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

com.aliyun.sdk.service.dytnsapi20200217.models.CertNoTwoElementVerificationRequest Maven / Gradle / Ivy

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

import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * 
 * {@link CertNoTwoElementVerificationRequest} extends {@link RequestModel}
 *
 * 

CertNoTwoElementVerificationRequest

*/ public class CertNoTwoElementVerificationRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AuthCode") @com.aliyun.core.annotation.Validation(required = true) private String authCode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CertName") @com.aliyun.core.annotation.Validation(required = true) private String certName; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CertNo") @com.aliyun.core.annotation.Validation(required = true) private String certNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount") private String resourceOwnerAccount; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ResourceOwnerId") private Long resourceOwnerId; private CertNoTwoElementVerificationRequest(Builder builder) { super(builder); this.authCode = builder.authCode; this.certName = builder.certName; this.certNo = builder.certNo; this.ownerId = builder.ownerId; this.resourceOwnerAccount = builder.resourceOwnerAccount; this.resourceOwnerId = builder.resourceOwnerId; } public static Builder builder() { return new Builder(); } public static CertNoTwoElementVerificationRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return authCode */ public String getAuthCode() { return this.authCode; } /** * @return certName */ public String getCertName() { return this.certName; } /** * @return certNo */ public String getCertNo() { return this.certNo; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return resourceOwnerAccount */ public String getResourceOwnerAccount() { return this.resourceOwnerAccount; } /** * @return resourceOwnerId */ public Long getResourceOwnerId() { return this.resourceOwnerId; } public static final class Builder extends Request.Builder { private String authCode; private String certName; private String certNo; private Long ownerId; private String resourceOwnerAccount; private Long resourceOwnerId; private Builder() { super(); } private Builder(CertNoTwoElementVerificationRequest request) { super(request); this.authCode = request.authCode; this.certName = request.certName; this.certNo = request.certNo; this.ownerId = request.ownerId; this.resourceOwnerAccount = request.resourceOwnerAccount; this.resourceOwnerId = request.resourceOwnerId; } /** *

This parameter is required.

* * example: *

QASDW@#**

*/ public Builder authCode(String authCode) { this.putQueryParameter("AuthCode", authCode); this.authCode = authCode; return this; } /** *

This parameter is required.

* * example: *

示例值

*/ public Builder certName(String certName) { this.putQueryParameter("CertName", certName); this.certName = certName; return this; } /** *

This parameter is required.

* * example: *

331021200001010000

*/ public Builder certNo(String certNo) { this.putQueryParameter("CertNo", certNo); this.certNo = certNo; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * ResourceOwnerAccount. */ public Builder resourceOwnerAccount(String resourceOwnerAccount) { this.putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount); this.resourceOwnerAccount = resourceOwnerAccount; return this; } /** * ResourceOwnerId. */ public Builder resourceOwnerId(Long resourceOwnerId) { this.putQueryParameter("ResourceOwnerId", resourceOwnerId); this.resourceOwnerId = resourceOwnerId; return this; } @Override public CertNoTwoElementVerificationRequest build() { return new CertNoTwoElementVerificationRequest(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy