GraphQL INPUT_OBJECT

CreateNotificationInput

link Definition

  • input CreateNotificationInput {
  • # Name of the notification.
  • name: String!
  • # ID of the client this belongs to.
  • clientId: Int!
  • # Determines the used transport type and its specific configuration.
  • transportTypeConfiguration: CreateNotificationTransportTypeConfigurationInput!
  • # Determines the used document type and its specific configuration.
  • settings: CreateNotifcationSettingsInput!
  • # Flag if the the notification is active. Defaults to true.
  • isActive: Boolean
  • # ID of List of products to be used.
  • productListId: Int
  • # Region configuration.
  • regionConfigurationId: Int
  • # List of events for this notification.
  • notificationEvents: [NotificationEventEnum]
  • }

link Required by