All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| userAccounts | UserAccountsDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"userAccounts" : {
"userAccount" : [ {
"billingAccount" : "...",
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"status" : "TERMINATED",
"statusDate" : 12345,
"terminationReason" : "...",
"subscriptions" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
}, {
"billingAccount" : "...",
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"status" : "CLOSED",
"statusDate" : 12345,
"terminationReason" : "...",
"subscriptions" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "INVALID_IMAGE_DATA",
"message" : "..."
}
}