class Contentful::Management::WebhookWebhookHealthMethodsFactory
Wrapper for webhook health information for a specific webhook. @private
Attributes
Public Class Methods
Source
# File lib/contentful/management/webhook_webhook_health_methods_factory.rb, line 13 def initialize(webhook) @webhook = webhook end
@private
Public Instance Methods
Source
# File lib/contentful/management/webhook_webhook_health_methods_factory.rb, line 18 def all(*) fail 'Not supported' end
Not supported
Source
# File lib/contentful/management/webhook_webhook_health_methods_factory.rb, line 25 def find WebhookHealth.find(webhook.client, webhook.space.id, webhook.id) end
Gets a webhook call detail for a specific webhook by ID.
@return [Contentful::Management::WebhookCall]