![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.UpdateEmbeddedStatusResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickbi_public20220101 Show documentation
Show all versions of quickbi_public20220101 Show documentation
Alibaba Cloud quickbi-public (20220101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class UpdateEmbeddedStatusResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public Integer result;
@NameInMap("Success")
public Boolean success;
public static UpdateEmbeddedStatusResponseBody build(java.util.Map map) throws Exception {
UpdateEmbeddedStatusResponseBody self = new UpdateEmbeddedStatusResponseBody();
return TeaModel.build(map, self);
}
public UpdateEmbeddedStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpdateEmbeddedStatusResponseBody setResult(Integer result) {
this.result = result;
return this;
}
public Integer getResult() {
return this.result;
}
public UpdateEmbeddedStatusResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy