Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 593 Bytes

Webhook.md

File metadata and controls

24 lines (18 loc) · 593 Bytes

Cfchat::Webhook

Properties

Name Type Description Notes
id Float The ID of the webhook [optional]
url String The url to which the events will be send [optional]
subscriptions Array<String> The list of subscribed events [optional]
account_id Float The id of the account which the webhook object belongs to [optional]

Example

require 'cfchat'

instance = Cfchat::Webhook.new(
  id: null,
  url: null,
  subscriptions: null,
  account_id: null
)