com.aliyun.sdk.service.httpdns20160201.models.DeleteDomainResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-httpdns20160201 Show documentation
Show all versions of alibabacloud-httpdns20160201 Show documentation
Alibaba Cloud Httpdns (20160201) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.httpdns20160201.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteDomainResponseBody} extends {@link TeaModel}
*
* DeleteDomainResponseBody
*/
public class DeleteDomainResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("DomainName")
private String domainName;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private DeleteDomainResponseBody(Builder builder) {
this.domainName = builder.domainName;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteDomainResponseBody create() {
return builder().build();
}
/**
* @return domainName
*/
public String getDomainName() {
return this.domainName;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String domainName;
private String requestId;
/**
* DomainName.
*/
public Builder domainName(String domainName) {
this.domainName = domainName;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteDomainResponseBody build() {
return new DeleteDomainResponseBody(this);
}
}
}