ModelEventWebhookCallbackList

open_in_new

A page of model event webhook callbacks. In order to access the next page, call modelEventWebhookCallbacks again with all parameters the same except passing in nextOffset for offset.

GraphQL Schema definition

  • type ModelEventWebhookCallbackList {
  • # The id of the next page.
  • # This will not be specified if there is no next page.
  • nextOffset: String
  • # The total number of callbacks registered.
  • totalResults: Int!
  • # Up to `pageSize` registered callbacks.
  • results: [ModelEventWebhookCallback!]
  • }