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.
1316 1317 1318 |
# File 'lib/platform-api/client.rb', line 1316 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.
1324 1325 1326 |
# File 'lib/platform-api/client.rb', line 1324 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.
1331 1332 1333 |
# File 'lib/platform-api/client.rb', line 1331 def list(app_id_or_app_name) @client.app_webhook_delivery.list(app_id_or_app_name) end |