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