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

com.aliyun.cdn20180510.models.VerifyDomainOwnerRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class VerifyDomainOwnerRequest extends TeaModel {
    /**
     * 

The domain name of which you want to verify the ownership. You can specify only one domain name.

*/ @NameInMap("DomainName") public String domainName; /** *

The verification method. Valid values:

*
*

* **dnsCheck**: by DNS record

*

* **fileCheck**: by verification file

*/ @NameInMap("VerifyType") public String verifyType; public static VerifyDomainOwnerRequest build(java.util.Map map) throws Exception { VerifyDomainOwnerRequest self = new VerifyDomainOwnerRequest(); return TeaModel.build(map, self); } public VerifyDomainOwnerRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public VerifyDomainOwnerRequest setVerifyType(String verifyType) { this.verifyType = verifyType; return this; } public String getVerifyType() { return this.verifyType; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy