![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_1_0.models.QueryReceiptsByPageRequest 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.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class QueryReceiptsByPageRequest extends TeaModel {
/**
* example:
* 1637658261363
*/
@NameInMap("endTime")
public Long endTime;
/**
* This parameter is required.
*
* example:
* EM-1017F28E03350B1738B3000X
*/
@NameInMap("modelId")
public String modelId;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* This parameter is required.
*
* example:
* 1637658261363
*/
@NameInMap("startTime")
public Long startTime;
/**
* This parameter is required.
*
* example:
* gmt_create
*/
@NameInMap("timeFilterField")
public String timeFilterField;
public static QueryReceiptsByPageRequest build(java.util.Map map) throws Exception {
QueryReceiptsByPageRequest self = new QueryReceiptsByPageRequest();
return TeaModel.build(map, self);
}
public QueryReceiptsByPageRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public QueryReceiptsByPageRequest setModelId(String modelId) {
this.modelId = modelId;
return this;
}
public String getModelId() {
return this.modelId;
}
public QueryReceiptsByPageRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public QueryReceiptsByPageRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryReceiptsByPageRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public QueryReceiptsByPageRequest setTimeFilterField(String timeFilterField) {
this.timeFilterField = timeFilterField;
return this;
}
public String getTimeFilterField() {
return this.timeFilterField;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy