![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkexclusive_1_0.models.GetLastOrgAuthDataResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GetLastOrgAuthDataResponseBody extends TeaModel {
/**
* example:
* 营业执照照片不清晰
*/
@NameInMap("authRemark")
public String authRemark;
/**
* example:
* 2
*/
@NameInMap("authStatus")
public Integer authStatus;
public static GetLastOrgAuthDataResponseBody build(java.util.Map map) throws Exception {
GetLastOrgAuthDataResponseBody self = new GetLastOrgAuthDataResponseBody();
return TeaModel.build(map, self);
}
public GetLastOrgAuthDataResponseBody setAuthRemark(String authRemark) {
this.authRemark = authRemark;
return this;
}
public String getAuthRemark() {
return this.authRemark;
}
public GetLastOrgAuthDataResponseBody setAuthStatus(Integer authStatus) {
this.authStatus = authStatus;
return this;
}
public Integer getAuthStatus() {
return this.authStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy