com.aliyun.quickbi_public20220101.models.CreateUserGroupResponseBody 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 CreateUserGroupResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 36829379-0C38-5BC0-830A-92665BF77D4F
*/
@NameInMap("RequestId")
public String requestId;
/**
* The ID of the added user group is returned. An empty string \"\" is returned if the add fails.
*
* example:
* f5eeb52e-d9c2-4a8b-80e3-47ab55c2****
*/
@NameInMap("Result")
public String result;
/**
* Indicates whether the request is successful. Valid values:
*
* - true: The request was successful.
* - false: The request failed.
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static CreateUserGroupResponseBody build(java.util.Map map) throws Exception {
CreateUserGroupResponseBody self = new CreateUserGroupResponseBody();
return TeaModel.build(map, self);
}
public CreateUserGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateUserGroupResponseBody setResult(String result) {
this.result = result;
return this;
}
public String getResult() {
return this.result;
}
public CreateUserGroupResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}