
com.aliyun.dingtalkbizfinance_1_0.models.UpdateApplyReceiptAndInvoiceRelatedResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbizfinance_1_0.models;
import com.aliyun.tea.*;
public class UpdateApplyReceiptAndInvoiceRelatedResponseBody extends TeaModel {
@NameInMap("batchUpdateInvoiceResponse")
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse batchUpdateInvoiceResponse;
@NameInMap("errorInvoiceKeyVOList")
public java.util.List errorInvoiceKeyVOList;
@NameInMap("success")
public Boolean success;
public static UpdateApplyReceiptAndInvoiceRelatedResponseBody build(java.util.Map map) throws Exception {
UpdateApplyReceiptAndInvoiceRelatedResponseBody self = new UpdateApplyReceiptAndInvoiceRelatedResponseBody();
return TeaModel.build(map, self);
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBody setBatchUpdateInvoiceResponse(UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse batchUpdateInvoiceResponse) {
this.batchUpdateInvoiceResponse = batchUpdateInvoiceResponse;
return this;
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse getBatchUpdateInvoiceResponse() {
return this.batchUpdateInvoiceResponse;
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBody setErrorInvoiceKeyVOList(java.util.List errorInvoiceKeyVOList) {
this.errorInvoiceKeyVOList = errorInvoiceKeyVOList;
return this;
}
public java.util.List getErrorInvoiceKeyVOList() {
return this.errorInvoiceKeyVOList;
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList extends TeaModel {
/**
* example:
* abc
*/
@NameInMap("invoiceCode")
public String invoiceCode;
/**
* example:
* abc
*/
@NameInMap("invoiceNo")
public String invoiceNo;
public static UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList build(java.util.Map map) throws Exception {
UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList self = new UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList();
return TeaModel.build(map, self);
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList setInvoiceCode(String invoiceCode) {
this.invoiceCode = invoiceCode;
return this;
}
public String getInvoiceCode() {
return this.invoiceCode;
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponseInvoiceKeyVOList setInvoiceNo(String invoiceNo) {
this.invoiceNo = invoiceNo;
return this;
}
public String getInvoiceNo() {
return this.invoiceNo;
}
}
public static class UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse extends TeaModel {
@NameInMap("invoiceKeyVOList")
public java.util.List invoiceKeyVOList;
public static UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse build(java.util.Map map) throws Exception {
UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse self = new UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse();
return TeaModel.build(map, self);
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyBatchUpdateInvoiceResponse setInvoiceKeyVOList(java.util.List invoiceKeyVOList) {
this.invoiceKeyVOList = invoiceKeyVOList;
return this;
}
public java.util.List getInvoiceKeyVOList() {
return this.invoiceKeyVOList;
}
}
public static class UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList extends TeaModel {
@NameInMap("invoiceCode")
public String invoiceCode;
@NameInMap("invoiceNo")
public String invoiceNo;
public static UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList build(java.util.Map map) throws Exception {
UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList self = new UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList();
return TeaModel.build(map, self);
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList setInvoiceCode(String invoiceCode) {
this.invoiceCode = invoiceCode;
return this;
}
public String getInvoiceCode() {
return this.invoiceCode;
}
public UpdateApplyReceiptAndInvoiceRelatedResponseBodyErrorInvoiceKeyVOList setInvoiceNo(String invoiceNo) {
this.invoiceNo = invoiceNo;
return this;
}
public String getInvoiceNo() {
return this.invoiceNo;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy