All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| billingAccount | BillingAccountDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"billingAccount" : {
"customerAccount" : "...",
"billingCycle" : "...",
"country" : "...",
"language" : "...",
"paymentMethod" : "DIRECTDEBIT",
"nextInvoiceDate" : 12345,
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"paymentTerms" : "THREE_X",
"electronicBilling" : true,
"status" : "ACTIVE",
"statusDate" : 12345,
"terminationReason" : "...",
"email" : "...",
"bankCoordinates" : {
"bankCode" : "...",
"branchCode" : "...",
"accountNumber" : "...",
"key" : "...",
"iban" : "...",
"bic" : "...",
"accountOwner" : "...",
"bankName" : "...",
"bankId" : "...",
"issuerNumber" : "...",
"issuerName" : "...",
"ics" : "..."
},
"invoices" : [ {
"invoiceId" : 12345,
"invoiceType" : "...",
"billingAccountCode" : "...",
"dueDate" : 12345,
"invoiceDate" : 12345,
"categoryInvoiceAgregate" : [ { }, { } ],
"invoiceIdToLink" : [ 12345, 12345 ],
"invoiceNumber" : "...",
"discount" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountTax" : 12345.0,
"amountWithTax" : 12345.0,
"paymentMethod" : "WIRETRANSFER",
"pdfPresent" : true,
"pdf" : "...",
"autoValidation" : true,
"returnXml" : true,
"returnPdf" : true,
"includeBalance" : true,
"recordedInvoiceDto" : { },
"netToPay" : 12345.0,
"invoiceMode" : "DETAILLED",
"customFields" : { }
}, {
"invoiceId" : 12345,
"invoiceType" : "...",
"billingAccountCode" : "...",
"dueDate" : 12345,
"invoiceDate" : 12345,
"categoryInvoiceAgregate" : [ { }, { } ],
"invoiceIdToLink" : [ 12345, 12345 ],
"invoiceNumber" : "...",
"discount" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountTax" : 12345.0,
"amountWithTax" : 12345.0,
"paymentMethod" : "DIRECTDEBIT",
"pdfPresent" : true,
"pdf" : "...",
"autoValidation" : true,
"returnXml" : true,
"returnPdf" : true,
"includeBalance" : true,
"recordedInvoiceDto" : { },
"netToPay" : 12345.0,
"invoiceMode" : "DETAILLED",
"customFields" : { }
} ],
"invoicingThreshold" : 12345.0,
"discountPlan" : "...",
"userAccounts" : {
"userAccount" : [ { }, { } ]
},
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : {
"title" : "...",
"firstName" : "...",
"lastName" : "..."
},
"address" : {
"address1" : "...",
"address2" : "...",
"address3" : "...",
"zipCode" : "...",
"city" : "...",
"country" : "...",
"state" : "..."
},
"businessAccountModel" : {
"code" : "...",
"description" : "..."
},
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
},
"updatedCode" : "..."
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ACTION_FORBIDDEN",
"message" : "..."
}
}