com.aliyun.quickbi_public20220101.models.WithdrawAllUserGroupsRequest 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 WithdrawAllUserGroupsRequest extends TeaModel {
/**
* The ID of the user. The UserID of the Quick BI is used instead of the UID of Alibaba Cloud.
* This parameter is required.
*
* example:
* 46e5374665ba4b679ee22e2a2927****
*/
@NameInMap("UserId")
public String userId;
public static WithdrawAllUserGroupsRequest build(java.util.Map map) throws Exception {
WithdrawAllUserGroupsRequest self = new WithdrawAllUserGroupsRequest();
return TeaModel.build(map, self);
}
public WithdrawAllUserGroupsRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}