All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| emailTemplate | array of EmailTemplateDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"emailTemplate" : [ {
"subject" : "...",
"htmlContent" : "...",
"textContent" : "...",
"code" : "...",
"description" : "...",
"media" : "FTP_FILE",
"tagStartDelimiter" : "...",
"tagEndDelimiter" : "...",
"startDate" : 12345,
"endDate" : 12345,
"type" : "OTHER",
"updatedCode" : "..."
}, {
"subject" : "...",
"htmlContent" : "...",
"textContent" : "...",
"code" : "...",
"description" : "...",
"media" : "WEBSERVICE",
"tagStartDelimiter" : "...",
"tagEndDelimiter" : "...",
"startDate" : 12345,
"endDate" : 12345,
"type" : "OTHER",
"updatedCode" : "..."
} ],
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "ACTION_FORBIDDEN",
"message" : "..."
}
}