com.aliyun.pds20220301.models.DeleteDomainRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class DeleteDomainRequest extends TeaModel {
/**
* The domain ID.
*
* example:
* bj1
*/
@NameInMap("domain_id")
public String domainId;
public static DeleteDomainRequest build(java.util.Map map) throws Exception {
DeleteDomainRequest self = new DeleteDomainRequest();
return TeaModel.build(map, self);
}
public DeleteDomainRequest setDomainId(String domainId) {
this.domainId = domainId;
return this;
}
public String getDomainId() {
return this.domainId;
}
}