Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 855 Bytes

UpdateWebhook.md

File metadata and controls

26 lines (20 loc) · 855 Bytes

Daily::UpdateWebhook

Properties

Name Type Description Notes
url String The webhook server endpoint that was provided. [optional]
basic_auth String The basic auth credentials that will be used to POST to the webhook URL. [optional]
retry_type String The retry configuration for this webhook endpoint to use. The default is circuit-breaker. [optional]
event_types Array<String> The set of event types this webhook is subscribed to. [optional]
hmac String A secret that can be used to verify the signature of the webhook. [optional]

Example

require 'daily-ruby'

instance = Daily::UpdateWebhook.new(
  url: null,
  basic_auth: null,
  retry_type: null,
  event_types: null,
  hmac: null
)