Sha256: cd0542add88ee4602c7a4c47d815a3c67d2e9941edea808e0113ba4eae70a3ff

Contents?: true

Size: 1.65 KB

Versions: 4

Compression:

Stored size: 1.65 KB

Contents

# SyncteraRubySdk::WebhookRequestObject

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **event_resource** | **String** | Json string of object associated with the event. For example, if your event is ACCOUNT.CREATED, You can refer to Acccount to parse the account event to obtain the ID, status etc.  | [optional] |
| **event_resource_changed_fields** | **String** | Json string of object associated with the event related to a resource change. This only contains those fields that have value changed on the event, and the field values are prior to the resource change event.  | [optional] |
| **event_time** | **Time** | Timestamp of the current event raised |  |
| **id** | **String** | The unique ID of the current event |  |
| **metadata** | **String** | Metadata that stored in the webhook subscription |  |
| **response_history** | [**Array<ResponseHistoryItem>**](ResponseHistoryItem.md) | Response history of the webhook request | [optional] |
| **status** | **String** | Current event status. Failing event will keep retry until it is purged. | [optional] |
| **type** | [**EventTypeExplicit**](EventTypeExplicit.md) |  |  |
| **url** | **String** | URL that you specified for the webhook and where this request will be sent |  |
| **webhook_id** | **String** | Id of the Webhook the current request belongs to |  |

## Example

```ruby
require 'synctera_ruby_sdk'

instance = SyncteraRubySdk::WebhookRequestObject.new(
  event_resource: null,
  event_resource_changed_fields: null,
  event_time: null,
  id: null,
  metadata: null,
  response_history: null,
  status: null,
  type: null,
  url: null,
  webhook_id: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
synctera_ruby_sdk-1.1.3 docs/WebhookRequestObject.md
synctera_ruby_sdk-1.1.2 docs/WebhookRequestObject.md
synctera_ruby_sdk-1.1.1 docs/WebhookRequestObject.md
synctera_ruby_sdk-1.0.0 docs/WebhookRequestObject.md