docs/CreateWebhookRequest.md in velopayments-2.23.78.beta1 vs docs/CreateWebhookRequest.md in velopayments-2.26.124.beta1
- old
+ new
@@ -1,23 +1,26 @@
# VeloPayments::CreateWebhookRequest
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**payor_id** | **String** | |
-**webhook_url** | **String** | |
-**authorization_header** | **String** | | [optional]
-**enabled** | **Boolean** | |
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **payor_id** | **String** | | |
+| **webhook_url** | **String** | the webhook URL to use. | |
+| **authorization_header** | **String** | the authorization header to include with the notification. | [optional] |
+| **enabled** | **Boolean** | whether the webhook is enabled. | |
+| **categories** | [**Array<Category>**](Category.md) | the categories to enable. | [optional] |
-## Code Sample
+## Example
```ruby
-require 'VeloPayments'
+require 'velopayments'
-instance = VeloPayments::CreateWebhookRequest.new(payor_id: null,
- webhook_url: null,
- authorization_header: null,
- enabled: null)
+instance = VeloPayments::CreateWebhookRequest.new(
+ payor_id: null,
+ webhook_url: null,
+ authorization_header: null,
+ enabled: null,
+ categories: null
+)
```
-