All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| sellers | SellersDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"sellers" : {
"seller" : [ {
"code" : "...",
"description" : "...",
"currencyCode" : "...",
"countryCode" : "...",
"languageCode" : "...",
"parentSeller" : "...",
"customers" : { },
"customFields" : { },
"invoiceTypeSequences" : {
"property1" : { },
"property2" : { }
},
"businessAccountModel" : { },
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"currencyCode" : "...",
"countryCode" : "...",
"languageCode" : "...",
"parentSeller" : "...",
"customers" : { },
"customFields" : { },
"invoiceTypeSequences" : {
"property1" : { },
"property2" : { }
},
"businessAccountModel" : { },
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "INVALID_PARAMETER",
"message" : "..."
}
}