INTERFACE

NotificationTargetType

Describes a notification target type

link GraphQL Schema definition

  • interface NotificationTargetType {
  • # Node-compatible opaque global identifier
  • id: ID!
  • # RequiresAddress shows whether notification targets of this type need an address
  • # to be passed in order to work.
  • # Examples of address are email address, Slack channel, etc.
  • requiresAddress: Boolean!
  • # Notification target type
  • type: String!
  • }