Equivalent of BusinessEntity in DTO
name | data type | constraints | description |
---|---|---|---|
scheduleDate | number | ||
startDate | number | ||
processingThreadId | number | ||
endDate | number | ||
priority | PriorityEnum | ||
media | MediaEnum | ||
subMedia | string | ||
useAnyMedia | boolean | ||
status | CampaignStatusEnum | ||
id | number | The id. | |
auditableField | array of AuditableFieldDto | ||
code | string | required | The code |
description | string | The description | |
updatedCode | string | The updated code. |
Example
{ "scheduleDate" : 12345, "startDate" : 12345, "processingThreadId" : 12345, "endDate" : 12345, "priority" : "URGENT", "media" : "FAX", "subMedia" : "...", "useAnyMedia" : true, "status" : "RUNNING", "id" : 12345, "auditableField" : [ { "entityClass" : "...", "fieldName" : "...", "id" : 12345, "changeOrigin" : "...", "auditableField" : [ { }, { } ], "originName" : "...", "code" : "...", "previousState" : "...", "currentState" : "...", "description" : "...", "created" : "...", "updatedCode" : "...", "actor" : "..." }, { "entityClass" : "...", "fieldName" : "...", "id" : 12345, "changeOrigin" : "...", "auditableField" : [ { }, { } ], "originName" : "...", "code" : "...", "previousState" : "...", "currentState" : "...", "description" : "...", "created" : "...", "updatedCode" : "...", "actor" : "..." } ], "code" : "...", "description" : "...", "updatedCode" : "..." }