INPUT_OBJECT
SubscriptionTypeInput
Description
Input for the event and audit types that the webhook is subscribed to.
link GraphQL Schema definition
- input SubscriptionTypeInput {
- # Input for the event types that the webhook is subscribed to. If specified,
- # IsSubscribedToAllEvents should be false.
- ActivityTypeEnum!] : [
- # Input for the audit types that the webhook is subscribed to. If specified,
- # IsSubscribedToAllAudits should be false.
- UserAuditTypeEnum!] : [
- # Input for the object types to which the webhook is subscribed. If specified,
- # IsSubscribedToAllObjectTypes should be false.
- EventObjectType!] : [
- # Specifies whether the webhook is subscribed to all events. If true, eventTypes
- # should be empty.
- Boolean :
- # Specifies whether the webhook is subscribed to all audits. If true, auditTypes
- # should be empty.
- Boolean :
- # Specifies whether the webhook is subscribed to all object types. If true,
- # objectTypes should be empty.
- Boolean :
- }