com.aliyun.quickbi_public20220101.models.QueryApprovalInfoRequest 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 QueryApprovalInfoRequest extends TeaModel {
/**
* example:
* 1
*/
@NameInMap("Page")
public Integer page;
/**
* example:
* 1000
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("Status")
public Integer status;
/**
* This parameter is required.
*
* example:
* 12352fasdavsa
*/
@NameInMap("UserId")
public String userId;
public static QueryApprovalInfoRequest build(java.util.Map map) throws Exception {
QueryApprovalInfoRequest self = new QueryApprovalInfoRequest();
return TeaModel.build(map, self);
}
public QueryApprovalInfoRequest setPage(Integer page) {
this.page = page;
return this;
}
public Integer getPage() {
return this.page;
}
public QueryApprovalInfoRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QueryApprovalInfoRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public QueryApprovalInfoRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}