jobTriggerDto Data Type

The Class JobTriggerDto.

Namespace
(Default)
Properties
name data type type namespace min/max occurs constraints description
jobInstance string element 1/1 required The job instance.
jobParams (custom) element 0/1   The job params.
Properties inherited from notificationDto
active boolean element 0/1   Is Notification active. A negative of Disabled. Deprecated in 5.0.1. Use Disabled field instead.
classNameFilter string element 1/1 required The class name filter.
counterTemplate string element 0/1   The counter template.
elFilter string element 0/1   The el filter.
eventTypeFilter notificationEventTypeEnum element 1/1 required Valid values: CREATED, UPDATED, REMOVED, TERMINATED, DISABLED, PROCESSED, REJECTED, REJECTED_CDR, LOGGED_IN, INBOUND_REQ, ENABLED
priority int element 1/1   The priority.
runAsync boolean element 0/1   Whether this notification will be run in async mode.
scriptInstanceCode string element 0/1   The script instance code.
scriptParams (custom) element 0/1   The script params.
Properties inherited from enableBusinessDto
code string attribute 1/1   The code
description string attribute 0/1   The description
id long attribute 0/1   The id.
auditable auditableDto element 0/1    
auditableField auditableFieldDto element 0/unbounded    
disabled boolean element 0/1   Is entity disabled. Value is ignored in Update action - use enable/disable API instead.
updatedCode string element 0/1   The updated code.

Example

<JobTrigger code="..." description="..." id="...">
  <jobParams>...</jobParams>
  <jobInstance>...</jobInstance>
  <classNameFilter>...</classNameFilter>
  <eventTypeFilter>...</eventTypeFilter>
  <elFilter>...</elFilter>
  <scriptInstanceCode>...</scriptInstanceCode>
  <scriptParams>...</scriptParams>
  <counterTemplate>...</counterTemplate>
  <priority>...</priority>
  <runAsync>...</runAsync>
  <disabled>...</disabled>
  <auditable/>
  <auditableFields>
    <auditableField/>
  </auditableFields>
  <updatedCode>...</updatedCode>
</JobTrigger>