com.aliyun.quickbi_public20220101.models.QueryWorksRequest 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 QueryWorksRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* abcd****
*/
@NameInMap("WorksId")
public String worksId;
public static QueryWorksRequest build(java.util.Map map) throws Exception {
QueryWorksRequest self = new QueryWorksRequest();
return TeaModel.build(map, self);
}
public QueryWorksRequest setWorksId(String worksId) {
this.worksId = worksId;
return this;
}
public String getWorksId() {
return this.worksId;
}
}