TimerEntityDto Data Type

The Class TimerEntityDto.

Implemented Interfaces
Serializable
Properties
name data type constraints description
disabled boolean   Is entity disabled. Value is ignored in Update action - use enable/disable API instead.
hour string   The hour.
minute string   The minute.
id number   The id.
second string   The second.
auditableField array of AuditableFieldDto  
year string   The year.
code string required The code
month string   The month.
dayOfMonth string   The day of month.
description string   The description
dayOfWeek string   The day of week.
updatedCode string   The updated code.

Example

{
  "disabled" : true,
  "hour" : "...",
  "minute" : "...",
  "id" : 12345,
  "second" : "...",
  "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" : "..."
  } ],
  "year" : "...",
  "code" : "...",
  "month" : "...",
  "dayOfMonth" : "...",
  "description" : "...",
  "dayOfWeek" : "...",
  "updatedCode" : "..."
}