TimelineEventType

Domain object for the timeline eventtype.

Example
define([
  "blueconic/api/data/domain/TimelineEventType"
], function(TimelineEventType) {
  var timelineEventType = new TimelineEventType();
  // ...
});

Extends

Properties

The event type properties. Properties can be nested.

inherited id String

Unique id of the domain object. Should not be null or empty.

inherited isPersistent Boolean

Is this instance already persisted? If not, this object only 'lives' client-side.

mappingFrontendEventType string

If mapped to a frontend event, reflects the id of that event.

mappingSystemEventType string

If mapped to a system event, reflects the id of that event.

inherited name String

The readable name of the domain object. Should not be null or empty.

priority blueconic.api.data.domain.TimelineEventType.PRIORITY

The priority.

retentionPeriod number

The retention period. E.g. the "time to live".

source blueconic.api.data.domain.TimelineEventType.SOURCE

The source.

PRIORITY String

All possible priorities.

Properties:
Name Description
HIGH
LOW

SOURCE String

All possible source.

Properties:
Name Description
PLUGIN
REST