OBJECT
EventSubscription
Description
The event subscription information.
link GraphQL Schema definition
- type EventSubscription {
- # The event types to which the webhook is subscribed.
- : [EventType!]!
- # True if subscribed to all events.
- : Boolean!
- # True if subscribed to all object types.
- : Boolean!
- # The object types to which the webhook is subscribed.
- : [EventObjectType!]!
- # The event severities to which the webhook is subscribed.
- : [EventSeverity!]!
- # Subscription message template.
- : TemplateInfo
- }