WorkflowStepEventNotification
No description
type WorkflowStepEventNotification implements Notification {
id: ID!
status: NotificationStatus
reason: NotificationReason
number: Int!
system: MonitoredSystem
customer: Customer
enqueueTime: DateTime
sentTime: DateTime
log: String
action: NotificationAction
step: WorkflowStepEvent
}
Fields
WorkflowStepEventNotification.id ● ID! non-null scalar
This notifications ID.
WorkflowStepEventNotification.status ● NotificationStatus enum
Status for a notification message.
WorkflowStepEventNotification.reason ● NotificationReason enum
The reason why the notification was triggered.
WorkflowStepEventNotification.number ● Int! non-null scalar
In case the reason is RESEND_ON_CONFIRMATION_CHANGE, RESEND_PERIODIC or RESEND_ON_SUB_STATUS_CHANGED this number counts the resends. For any other reason it will be 1.
WorkflowStepEventNotification.system ● MonitoredSystem interface
An associated monitored system. Can be null.
WorkflowStepEventNotification.customer ● Customer object
An associated customer. Can be null,
WorkflowStepEventNotification.enqueueTime ● DateTime scalar
The time when this notification was added to the send queue.
WorkflowStepEventNotification.sentTime ● DateTime scalar
The time when this notification was sent.
WorkflowStepEventNotification.log ● String scalar
This notifications log.
WorkflowStepEventNotification.action ● NotificationAction interface
The action for this notification.
WorkflowStepEventNotification.step ● WorkflowStepEvent object
The check for which this notification was generated.