![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkesign_2_0.models.GetIsvStatusResponseBody 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.dingtalkesign_2_0.models;
import com.aliyun.tea.*;
public class GetIsvStatusResponseBody extends TeaModel {
@NameInMap("authStatus")
public String authStatus;
@NameInMap("installStatus")
public String installStatus;
public static GetIsvStatusResponseBody build(java.util.Map map) throws Exception {
GetIsvStatusResponseBody self = new GetIsvStatusResponseBody();
return TeaModel.build(map, self);
}
public GetIsvStatusResponseBody setAuthStatus(String authStatus) {
this.authStatus = authStatus;
return this;
}
public String getAuthStatus() {
return this.authStatus;
}
public GetIsvStatusResponseBody setInstallStatus(String installStatus) {
this.installStatus = installStatus;
return this;
}
public String getInstallStatus() {
return this.installStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy