Sha256: 0c27c804749e4cc97fe357f688fb98877a4344b2393382887e42cca5efcdba07
Contents?: true
Size: 1.19 KB
Versions: 54
Compression:
Stored size: 1.19 KB
Contents
# Phrase::WebhookUpdateParameters ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **callback_url** | **String** | Callback URL to send requests to | [optional] **secret** | **String** | Webhook secret used to calculate signature. If empty, the default project secret will be used. | [optional] **description** | **String** | Webhook description | [optional] **events** | **String** | List of event names to trigger the webhook (separated by comma) | [optional] **active** | **Boolean** | Whether webhook is active or inactive | [optional] **include_branches** | **Boolean** | If enabled, webhook will also be triggered for events from branches of the project specified. | [optional] ## Code Sample ```ruby require 'Phrase' instance = Phrase::WebhookUpdateParameters.new(callback_url: http://example.com/hooks/phraseapp-notifications, secret: secr3t, description: My webhook for chat notifications, events: locales:create,translations:update, active: null, include_branches: null) ```
Version data entries
54 entries across 54 versions & 1 rubygems