All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| generateInvoiceResultDto | GenerateInvoiceResultDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"generateInvoiceResultDto" : {
"invoiceId" : 12345,
"invoiceNumber" : "...",
"temporaryInvoiceNumber" : "...",
"invoiceTypeCode" : "...",
"amount" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"pdf" : "...",
"accountOperationId" : 12345
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ACTION_FORBIDDEN",
"message" : "..."
}
}