![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.UpdateUserGroupResponseBody 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 UpdateUserGroupResponseBody extends TeaModel {
/**
* The ID of the request.
*/
@NameInMap("RequestId")
public String requestId;
/**
* Whether the interface is successfully executed. Valid values:
*
* * true: The request was successful.
* * false: The request fails.
*/
@NameInMap("Result")
public Boolean result;
/**
* Indicates whether the request is successful. Valid values:
*
* * true: The request was successful.
* * false: The request failed.
*/
@NameInMap("Success")
public Boolean success;
public static UpdateUserGroupResponseBody build(java.util.Map map) throws Exception {
UpdateUserGroupResponseBody self = new UpdateUserGroupResponseBody();
return TeaModel.build(map, self);
}
public UpdateUserGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public UpdateUserGroupResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public UpdateUserGroupResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy