com.aliyun.pds20220301.models.CNameStatus 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 CNameStatus extends TeaModel {
/**
* example:
* BINDING/BOUND
*/
@NameInMap("bingding_state")
public String bingdingState;
/**
* example:
* NORMAL/ABNORMAL
*/
@NameInMap("legal_state")
public String legalState;
/**
* example:
* beian
*/
@NameInMap("remark")
public String remark;
public static CNameStatus build(java.util.Map map) throws Exception {
CNameStatus self = new CNameStatus();
return TeaModel.build(map, self);
}
public CNameStatus setBingdingState(String bingdingState) {
this.bingdingState = bingdingState;
return this;
}
public String getBingdingState() {
return this.bingdingState;
}
public CNameStatus setLegalState(String legalState) {
this.legalState = legalState;
return this;
}
public String getLegalState() {
return this.legalState;
}
public CNameStatus setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
}