GetEmailNotificationResponseDto Data Type

All the MEVEO API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
emailNotificationDto EmailNotificationDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "emailNotificationDto" : {
    "emailFrom" : "...",
    "emailToEl" : "...",
    "subject" : "...",
    "body" : "...",
    "htmlBody" : "...",
    "sendToMail" : [ "...", "..." ],
    "code" : "...",
    "classNameFilter" : "...",
    "eventTypeFilter" : "LOGGED_IN",
    "elFilter" : "...",
    "scriptInstanceCode" : "...",
    "scriptParams" : {
      "property1" : "...",
      "property2" : "..."
    },
    "counterTemplate" : "...",
    "updatedCode" : "..."
  },
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : "ENTITY_ALREADY_EXISTS_EXCEPTION",
    "message" : "..."
  }
}