com.aliyun.dingtalkcontact_1_0.models.GetOrgAuthInfoResponseBody 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class GetOrgAuthInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("authLevel")
public Long authLevel;
/**
* example:
* xxx
*/
@NameInMap("legalPerson")
public String legalPerson;
/**
* This parameter is required.
*
* example:
* 测试有限公司
*/
@NameInMap("licenseOrgName")
public String licenseOrgName;
/**
* example:
*
*/
@NameInMap("licenseUrl")
public String licenseUrl;
/**
* This parameter is required.
*
* example:
* 测试
*/
@NameInMap("orgName")
public String orgName;
/**
* example:
* 2456677
*/
@NameInMap("organizationCode")
public String organizationCode;
/**
* example:
* 1233
*/
@NameInMap("registrationNum")
public String registrationNum;
/**
* example:
* 123566788
*/
@NameInMap("unifiedSocialCredit")
public String unifiedSocialCredit;
public static GetOrgAuthInfoResponseBody build(java.util.Map map) throws Exception {
GetOrgAuthInfoResponseBody self = new GetOrgAuthInfoResponseBody();
return TeaModel.build(map, self);
}
public GetOrgAuthInfoResponseBody setAuthLevel(Long authLevel) {
this.authLevel = authLevel;
return this;
}
public Long getAuthLevel() {
return this.authLevel;
}
public GetOrgAuthInfoResponseBody setLegalPerson(String legalPerson) {
this.legalPerson = legalPerson;
return this;
}
public String getLegalPerson() {
return this.legalPerson;
}
public GetOrgAuthInfoResponseBody setLicenseOrgName(String licenseOrgName) {
this.licenseOrgName = licenseOrgName;
return this;
}
public String getLicenseOrgName() {
return this.licenseOrgName;
}
public GetOrgAuthInfoResponseBody setLicenseUrl(String licenseUrl) {
this.licenseUrl = licenseUrl;
return this;
}
public String getLicenseUrl() {
return this.licenseUrl;
}
public GetOrgAuthInfoResponseBody setOrgName(String orgName) {
this.orgName = orgName;
return this;
}
public String getOrgName() {
return this.orgName;
}
public GetOrgAuthInfoResponseBody setOrganizationCode(String organizationCode) {
this.organizationCode = organizationCode;
return this;
}
public String getOrganizationCode() {
return this.organizationCode;
}
public GetOrgAuthInfoResponseBody setRegistrationNum(String registrationNum) {
this.registrationNum = registrationNum;
return this;
}
public String getRegistrationNum() {
return this.registrationNum;
}
public GetOrgAuthInfoResponseBody setUnifiedSocialCredit(String unifiedSocialCredit) {
this.unifiedSocialCredit = unifiedSocialCredit;
return this;
}
public String getUnifiedSocialCredit() {
return this.unifiedSocialCredit;
}
}