All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customer | CustomerDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customer" : {
"customerCategory" : "...",
"customerBrand" : "...",
"seller" : "...",
"mandateIdentification" : "...",
"mandateDate" : 12345,
"contactInformation" : {
"email" : "...",
"phone" : "...",
"mobile" : "...",
"fax" : "..."
},
"customerAccounts" : {
"customerAccount" : [ { }, { } ]
},
"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" : "SUCCESS",
"errorCode" : "INVALID_ENUM_VALUE",
"message" : "..."
}
}