com.antgroup.antchain.openapi.twc.models.LesseePerson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;
import com.aliyun.tea.*;
public class LesseePerson extends TeaModel {
// 承租人姓名
@NameInMap("name")
@Validation(required = true)
public String name;
// 承租人身份证号
@NameInMap("cert_no")
@Validation(required = true)
public String certNo;
// 承租人手机号
@NameInMap("mobile")
@Validation(required = true)
public String mobile;
public static LesseePerson build(java.util.Map map) throws Exception {
LesseePerson self = new LesseePerson();
return TeaModel.build(map, self);
}
public LesseePerson setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public LesseePerson setCertNo(String certNo) {
this.certNo = certNo;
return this;
}
public String getCertNo() {
return this.certNo;
}
public LesseePerson setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
}