All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| offerTemplate | OfferTemplateDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"offerTemplate" : {
"code" : "...",
"description" : "...",
"name" : "...",
"longDescription" : "...",
"disabled" : true,
"bomCode" : "...",
"offerTemplateCategory" : [ "...", "..." ],
"offerServiceTemplate" : [ {
"serviceTemplate" : { },
"mandatory" : true,
"incompatibleServiceTemplate" : [ { }, { } ]
}, {
"serviceTemplate" : { },
"mandatory" : true,
"incompatibleServiceTemplate" : [ { }, { } ]
} ],
"offerProductTemplate" : [ {
"productTemplate" : { },
"mandatory" : true
}, {
"productTemplate" : { },
"mandatory" : true
} ],
"customFields" : {
"customField" : [ { }, { } ]
},
"imagePath" : "...",
"imageBase64" : "...",
"updatedCode" : "..."
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "INVALID_ENUM_VALUE",
"message" : "..."
}
}