All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| userAccount | UserAccountDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"userAccount" : {
"billingAccount" : "...",
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"status" : "ACTIVE",
"statusDate" : 12345,
"terminationReason" : "...",
"subscriptions" : {
"subscription" : [ { }, { } ]
},
"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" : "MISSING_PARAMETER",
"message" : "..."
}
}