# KlaviyoAPI::WebhookPartialUpdateQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | A name for the webhook. | [optional] | | **description** | **String** | A description for the webhook. | [optional] | | **endpoint_url** | **String** | A url to send webhook calls to. Must be https. | [optional] | | **secret_key** | **String** | A secret key, that will be used for webhook request signing. | [optional] | | **enabled** | **Boolean** | Is the webhook enabled. | [optional] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::WebhookPartialUpdateQueryResourceObjectAttributes.new( name: null, description: null, endpoint_url: https://www.example.com/example/path, secret_key: null, enabled: null ) ```