Class: PlatformAPI::AppWebhookDelivery
- Inherits:
-
Object
- Object
- PlatformAPI::AppWebhookDelivery
- Defined in:
- lib/platform-api/client.rb
Overview
Represents the delivery of a webhook notification, including its current status.
Instance Method Summary collapse
-
#info(app_id_or_app_name, app_webhook_delivery_id) ⇒ Object
Returns the info for an existing delivery.
-
#initialize(client) ⇒ AppWebhookDelivery
constructor
A new instance of AppWebhookDelivery.
-
#list(app_id_or_app_name) ⇒ Object
Lists existing deliveries for an app.
Constructor Details
#initialize(client) ⇒ AppWebhookDelivery
Returns a new instance of AppWebhookDelivery.
1328 1329 1330 |
# File 'lib/platform-api/client.rb', line 1328 def initialize(client) @client = client end |
Instance Method Details
#info(app_id_or_app_name, app_webhook_delivery_id) ⇒ Object
Returns the info for an existing delivery.
1336 1337 1338 |
# File 'lib/platform-api/client.rb', line 1336 def info(app_id_or_app_name, app_webhook_delivery_id) @client.app_webhook_delivery.info(app_id_or_app_name, app_webhook_delivery_id) end |
#list(app_id_or_app_name) ⇒ Object
Lists existing deliveries for an app.
1343 1344 1345 |
# File 'lib/platform-api/client.rb', line 1343 def list(app_id_or_app_name) @client.app_webhook_delivery.list(app_id_or_app_name) end |