All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| subscription | SubscriptionDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"subscription" : {
"code" : "...",
"description" : "...",
"userAccount" : "...",
"offerTemplate" : "...",
"subscriptionDate" : 12345,
"terminationDate" : 12345,
"endAgreementDate" : 12345,
"status" : "CANCELED",
"statusDate" : 12345,
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
},
"accesses" : {
"access" : [ { }, { } ]
},
"services" : {
"serviceInstance" : [ { }, { } ]
},
"products" : {
"products" : [ { }, { } ]
},
"terminationReason" : "...",
"updatedCode" : "..."
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "INVALID_PARAMETER",
"message" : "..."
}
}