com.aliyun.dingtalkcontract_1_0.models.EsignQueryGrantInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontract_1_0.models;
import com.aliyun.tea.*;
public class EsignQueryGrantInfoResponseBody extends TeaModel {
@NameInMap("result")
public EsignQueryGrantInfoResponseBodyResult result;
@NameInMap("success")
public Boolean success;
public static EsignQueryGrantInfoResponseBody build(java.util.Map map) throws Exception {
EsignQueryGrantInfoResponseBody self = new EsignQueryGrantInfoResponseBody();
return TeaModel.build(map, self);
}
public EsignQueryGrantInfoResponseBody setResult(EsignQueryGrantInfoResponseBodyResult result) {
this.result = result;
return this;
}
public EsignQueryGrantInfoResponseBodyResult getResult() {
return this.result;
}
public EsignQueryGrantInfoResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class EsignQueryGrantInfoResponseBodyResult extends TeaModel {
/**
* example:
* 何一兵
*/
@NameInMap("legalPerson")
public String legalPerson;
/**
* example:
* 18667021101
*/
@NameInMap("mobilePhoneNumber")
public String mobilePhoneNumber;
/**
* example:
* 杭州天谷信息科技有限公司
*/
@NameInMap("orgName")
public String orgName;
/**
* example:
* 86
*/
@NameInMap("stateCode")
public String stateCode;
/**
* example:
* 913301087458306077
*/
@NameInMap("unifiedSocialCredit")
public String unifiedSocialCredit;
/**
* example:
* 某人名
*/
@NameInMap("userName")
public String userName;
public static EsignQueryGrantInfoResponseBodyResult build(java.util.Map map) throws Exception {
EsignQueryGrantInfoResponseBodyResult self = new EsignQueryGrantInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public EsignQueryGrantInfoResponseBodyResult setLegalPerson(String legalPerson) {
this.legalPerson = legalPerson;
return this;
}
public String getLegalPerson() {
return this.legalPerson;
}
public EsignQueryGrantInfoResponseBodyResult setMobilePhoneNumber(String mobilePhoneNumber) {
this.mobilePhoneNumber = mobilePhoneNumber;
return this;
}
public String getMobilePhoneNumber() {
return this.mobilePhoneNumber;
}
public EsignQueryGrantInfoResponseBodyResult setOrgName(String orgName) {
this.orgName = orgName;
return this;
}
public String getOrgName() {
return this.orgName;
}
public EsignQueryGrantInfoResponseBodyResult setStateCode(String stateCode) {
this.stateCode = stateCode;
return this;
}
public String getStateCode() {
return this.stateCode;
}
public EsignQueryGrantInfoResponseBodyResult setUnifiedSocialCredit(String unifiedSocialCredit) {
this.unifiedSocialCredit = unifiedSocialCredit;
return this;
}
public String getUnifiedSocialCredit() {
return this.unifiedSocialCredit;
}
public EsignQueryGrantInfoResponseBodyResult setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
}