All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| billingAccounts | BillingAccountsDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"billingAccounts" : {
"billingAccount" : [ {
"customerAccount" : "...",
"billingCycle" : "...",
"country" : "...",
"language" : "...",
"paymentMethod" : "TIP",
"nextInvoiceDate" : 12345,
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"paymentTerms" : "THREE_X",
"electronicBilling" : true,
"status" : "ACTIVE",
"statusDate" : 12345,
"terminationReason" : "...",
"email" : "...",
"bankCoordinates" : { },
"invoices" : [ { }, { } ],
"invoicingThreshold" : 12345.0,
"discountPlan" : "...",
"userAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
}, {
"customerAccount" : "...",
"billingCycle" : "...",
"country" : "...",
"language" : "...",
"paymentMethod" : "TIP",
"nextInvoiceDate" : 12345,
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"paymentTerms" : "THREE_X",
"electronicBilling" : true,
"status" : "CANCELED",
"statusDate" : 12345,
"terminationReason" : "...",
"email" : "...",
"bankCoordinates" : { },
"invoices" : [ { }, { } ],
"invoicingThreshold" : 12345.0,
"discountPlan" : "...",
"userAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ENTITY_DOES_NOT_EXISTS_EXCEPTION",
"message" : "..."
}
}