![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.quickbi_public20220101.models.CancelCollectionRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.quickbi_public20220101.models;
import com.aliyun.tea.*;
public class CancelCollectionRequest extends TeaModel {
/**
* The ID of the favorite user. The user ID is the UserID of the Quick BI, not the UID of Alibaba Cloud.
* This parameter is required.
*
* example:
* 121344444790****
*/
@NameInMap("UserId")
public String userId;
/**
* The ID of the work to cancel the collection.
* This parameter is required.
*
* example:
* 5d6ae4e7-cede-43cd-b4d3-d2fd442a9202
*/
@NameInMap("WorksId")
public String worksId;
public static CancelCollectionRequest build(java.util.Map map) throws Exception {
CancelCollectionRequest self = new CancelCollectionRequest();
return TeaModel.build(map, self);
}
public CancelCollectionRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public CancelCollectionRequest setWorksId(String worksId) {
this.worksId = worksId;
return this;
}
public String getWorksId() {
return this.worksId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy