com.aliyun.dingtalkworkflow_1_0.models.PremiumGetSubmittedInstancesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class PremiumGetSubmittedInstancesRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Integer pageNumber;
/**
* This parameter is required.
*
* example:
* 20
*/
@NameInMap("pageSize")
public Integer pageSize;
/**
* This parameter is required.
*
* example:
* manager001
*/
@NameInMap("userId")
public String userId;
public static PremiumGetSubmittedInstancesRequest build(java.util.Map map) throws Exception {
PremiumGetSubmittedInstancesRequest self = new PremiumGetSubmittedInstancesRequest();
return TeaModel.build(map, self);
}
public PremiumGetSubmittedInstancesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public PremiumGetSubmittedInstancesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public PremiumGetSubmittedInstancesRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}