class PlatformAPI::AddonWebhookEvent
Represents a webhook event that occurred.
Public Class Methods
new(client)
click to toggle source
# File lib/platform-api/client.rb, line 1051 def initialize(client) @client = client end
Public Instance Methods
info(addon_id_or_addon_name, app_webhook_event_id)
click to toggle source
Returns the info for a specified webhook event. Can only be accessed by the add-on partner providing this add-on.
@param addon_id_or_addon_name: unique identifier of add-on or globally unique name of the add-on @param app_webhook_event_id: the event's unique identifier
# File lib/platform-api/client.rb, line 1059 def info(addon_id_or_addon_name, app_webhook_event_id) @client.addon_webhook_event.info(addon_id_or_addon_name, app_webhook_event_id) end
list(addon_id_or_addon_name)
click to toggle source
Lists existing webhook events for an add-on. Can only be accessed by the add-on partner providing this add-on.
@param addon_id_or_addon_name: unique identifier of add-on or globally unique name of the add-on
# File lib/platform-api/client.rb, line 1066 def list(addon_id_or_addon_name) @client.addon_webhook_event.list(addon_id_or_addon_name) end