![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbizfinance_1_0.models.GetInvoiceByPageRequest 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 GetInvoiceByPageRequest extends TeaModel {
@NameInMap("request")
public GetInvoiceByPageRequestRequest request;
public static GetInvoiceByPageRequest build(java.util.Map map) throws Exception {
GetInvoiceByPageRequest self = new GetInvoiceByPageRequest();
return TeaModel.build(map, self);
}
public GetInvoiceByPageRequest setRequest(GetInvoiceByPageRequestRequest request) {
this.request = request;
return this;
}
public GetInvoiceByPageRequestRequest getRequest() {
return this.request;
}
public static class GetInvoiceByPageRequestRequest extends TeaModel {
/**
* example:
* abc
*/
@NameInMap("accountantBookId")
public String accountantBookId;
/**
* example:
* COM_DEFAULT
*/
@NameInMap("companyCode")
public String companyCode;
/**
* example:
* abc
*/
@NameInMap("endTime")
public Long endTime;
/**
* example:
* abc
*/
@NameInMap("financeType")
public String financeType;
/**
* example:
* 2
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* example:
* 1
*/
@NameInMap("pageSize")
public Long pageSize;
/**
* example:
* 2022-07-11
*/
@NameInMap("startTime")
public Long startTime;
/**
* example:
* 1111111111
*/
@NameInMap("taxNo")
public String taxNo;
/**
* example:
* ABC
*/
@NameInMap("verifyStatus")
public String verifyStatus;
public static GetInvoiceByPageRequestRequest build(java.util.Map map) throws Exception {
GetInvoiceByPageRequestRequest self = new GetInvoiceByPageRequestRequest();
return TeaModel.build(map, self);
}
public GetInvoiceByPageRequestRequest setAccountantBookId(String accountantBookId) {
this.accountantBookId = accountantBookId;
return this;
}
public String getAccountantBookId() {
return this.accountantBookId;
}
public GetInvoiceByPageRequestRequest setCompanyCode(String companyCode) {
this.companyCode = companyCode;
return this;
}
public String getCompanyCode() {
return this.companyCode;
}
public GetInvoiceByPageRequestRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetInvoiceByPageRequestRequest setFinanceType(String financeType) {
this.financeType = financeType;
return this;
}
public String getFinanceType() {
return this.financeType;
}
public GetInvoiceByPageRequestRequest setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetInvoiceByPageRequestRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public GetInvoiceByPageRequestRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetInvoiceByPageRequestRequest setTaxNo(String taxNo) {
this.taxNo = taxNo;
return this;
}
public String getTaxNo() {
return this.taxNo;
}
public GetInvoiceByPageRequestRequest setVerifyStatus(String verifyStatus) {
this.verifyStatus = verifyStatus;
return this;
}
public String getVerifyStatus() {
return this.verifyStatus;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy