Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 784 Bytes

File metadata and controls

26 lines (20 loc) · 784 Bytes

Bandwidth::CreateEndpointRequestBase

Properties

Name Type Description Notes
type EndpointTypeEnum
direction EndpointDirectionEnum
event_callback_url String The URL to send event callbacks to. [optional]
event_fallback_url String The URL to send event fallbacks to. [optional]
tag String A tag for the endpoint. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::CreateEndpointRequestBase.new(
  type: null,
  direction: null,
  event_callback_url: https://myapp.com/callback,
  event_fallback_url: https://fallback.myapp.com/callback,
  tag: my-tag
)