com.aliyun.quickbi_public20220101.models.QueryWorksByOrganizationRequest 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 QueryWorksByOrganizationRequest extends TeaModel {
/**
* The page number of the returned page.
*/
@NameInMap("PageNum")
public Integer pageNum;
/**
* The number of rows per page set when the interface is requested.
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* Returns a list of all works in the organization that meet the requested criteria.
*/
@NameInMap("Status")
public Integer status;
/**
* The total number of pages returned.
*/
@NameInMap("ThirdPartAuthFlag")
public Integer thirdPartAuthFlag;
/**
* The ID of the request.
*/
@NameInMap("WorksType")
public String worksType;
public static QueryWorksByOrganizationRequest build(java.util.Map map) throws Exception {
QueryWorksByOrganizationRequest self = new QueryWorksByOrganizationRequest();
return TeaModel.build(map, self);
}
public QueryWorksByOrganizationRequest setPageNum(Integer pageNum) {
this.pageNum = pageNum;
return this;
}
public Integer getPageNum() {
return this.pageNum;
}
public QueryWorksByOrganizationRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryWorksByOrganizationRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public QueryWorksByOrganizationRequest setThirdPartAuthFlag(Integer thirdPartAuthFlag) {
this.thirdPartAuthFlag = thirdPartAuthFlag;
return this;
}
public Integer getThirdPartAuthFlag() {
return this.thirdPartAuthFlag;
}
public QueryWorksByOrganizationRequest setWorksType(String worksType) {
this.worksType = worksType;
return this;
}
public String getWorksType() {
return this.worksType;
}
}