Class: PlatformAPI::AppWebhookEvent
- Inherits:
-
Object
- Object
- PlatformAPI::AppWebhookEvent
- Defined in:
- lib/platform-api/client.rb
Overview
Represents a webhook event that occurred.
Instance Method Summary collapse
-
#info(app_id_or_app_name, app_webhook_event_id) ⇒ Object
Returns the info for a specified webhook event.
-
#initialize(client) ⇒ AppWebhookEvent
constructor
A new instance of AppWebhookEvent.
-
#list(app_id_or_app_name) ⇒ Object
Lists existing webhook events for an app.
Constructor Details
#initialize(client) ⇒ AppWebhookEvent
Returns a new instance of AppWebhookEvent.
1350 1351 1352 |
# File 'lib/platform-api/client.rb', line 1350 def initialize(client) @client = client end |
Instance Method Details
#info(app_id_or_app_name, app_webhook_event_id) ⇒ Object
Returns the info for a specified webhook event.
1358 1359 1360 |
# File 'lib/platform-api/client.rb', line 1358 def info(app_id_or_app_name, app_webhook_event_id) @client.app_webhook_event.info(app_id_or_app_name, app_webhook_event_id) end |
#list(app_id_or_app_name) ⇒ Object
Lists existing webhook events for an app.
1365 1366 1367 |
# File 'lib/platform-api/client.rb', line 1365 def list(app_id_or_app_name) @client.app_webhook_event.list(app_id_or_app_name) end |