GraphQL OBJECT

Notification

Client notifications.

link Definition

  • type Notification {
  • # Notification ID.
  • id: Int
  • # Notification name.
  • name: String
  • # Client to whom the notification refers to.
  • client: Client
  • # Date and time when the notification was created.
  • creationDate: DateTime
  • # Date and time when the notification was last modified.
  • lastModifyDate: DateTime
  • # User who last modified the notification.
  • lastModifiedBy: UserAccount
  • # User who created the notification.
  • createdBy: UserAccount
  • # Boolean flag which determines if the notification is active right now.
  • isActive: Boolean
  • # Represents the encoding of the notification.
  • notificationEvents: [NotificationEvent]
  • # Region configuration.
  • regionConfiguration: RegionConfiguration
  • # The product list for which the notification applies.
  • productList: ProductList
  • # The settings of the notification.
  • settings: NotificationSettings
  • # The configuration of the transport type.
  • transportTypeConfiguration: NotificationTransportTypeConfiguration
  • }