# Plaid::HoldingsDefaultUpdateWebhook ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **webhook_type** | **String** | `HOLDINGS` | | | **webhook_code** | **String** | `DEFAULT_UPDATE` | | | **item_id** | **String** | The `item_id` of the Item associated with this webhook, warning, or error | | | **error** | [**Error**](Error.md) | | [optional] | | **new_holdings** | **Float** | The number of new holdings reported since the last time this webhook was fired. | | | **updated_holdings** | **Float** | The number of updated holdings reported since the last time this webhook was fired. | | ## Example ```ruby require 'plaid' instance = Plaid::HoldingsDefaultUpdateWebhook.new( webhook_type: null, webhook_code: null, item_id: null, error: null, new_holdings: null, updated_holdings: null ) ```