
com.aliyun.dingtalkworkflow_1_0.models.PagesExportInstancesRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class PagesExportInstancesRequest extends TeaModel {
@NameInMap("endTimeInMills")
public Long endTimeInMills;
/**
* This parameter is required.
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("orderBy")
public String orderBy;
/**
* This parameter is required.
*/
@NameInMap("processCode")
public String processCode;
/**
* This parameter is required.
*/
@NameInMap("startTimeInMills")
public Long startTimeInMills;
@NameInMap("status")
public String status;
public static PagesExportInstancesRequest build(java.util.Map map) throws Exception {
PagesExportInstancesRequest self = new PagesExportInstancesRequest();
return TeaModel.build(map, self);
}
public PagesExportInstancesRequest setEndTimeInMills(Long endTimeInMills) {
this.endTimeInMills = endTimeInMills;
return this;
}
public Long getEndTimeInMills() {
return this.endTimeInMills;
}
public PagesExportInstancesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public PagesExportInstancesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public PagesExportInstancesRequest setOrderBy(String orderBy) {
this.orderBy = orderBy;
return this;
}
public String getOrderBy() {
return this.orderBy;
}
public PagesExportInstancesRequest setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public PagesExportInstancesRequest setStartTimeInMills(Long startTimeInMills) {
this.startTimeInMills = startTimeInMills;
return this;
}
public Long getStartTimeInMills() {
return this.startTimeInMills;
}
public PagesExportInstancesRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy