All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| providerContact | ProviderContactDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"providerContact" : {
"code" : "...",
"description" : "...",
"firstName" : "...",
"lastName" : "...",
"email" : "...",
"phone" : "...",
"mobile" : "...",
"fax" : "...",
"genericMail" : "...",
"addressDto" : {
"address1" : "...",
"address2" : "...",
"address3" : "...",
"zipCode" : "...",
"city" : "...",
"country" : "...",
"state" : "..."
}
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}