All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.quickbi_public20220101.models.QueryWorksByOrganizationRequest Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy