All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| invoiceId | number | |
| invoiceNumber | string | |
| invoiceDate | number | |
| dueDate | number | |
| amountWithoutTax | number | |
| amountTax | number | |
| amountWithTax | number | |
| netToPay | number | |
| xmlInvoice | string | |
| pdfInvoice | string | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"invoiceId" : 12345,
"invoiceNumber" : "...",
"invoiceDate" : 12345,
"dueDate" : 12345,
"amountWithoutTax" : 12345.0,
"amountTax" : 12345.0,
"amountWithTax" : 12345.0,
"netToPay" : 12345.0,
"xmlInvoice" : "...",
"pdfInvoice" : "...",
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "DUPLICATE_ACCESS",
"message" : "..."
}
}