Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 842 Bytes

DialoutProperties.md

File metadata and controls

26 lines (20 loc) · 842 Bytes

Daily::DialoutProperties

Properties

Name Type Description Notes
sip_uri String sipUri to call. uri should start with `sip:`. [optional]
phone_number String phone number to call. number must start with country code e.g `+1` [optional]
display_name String The sipUri or The phone participant is shown with this name in the web UI. [optional]
video Boolean Enable SIP video in the room, only availble for sipUri. [optional]
codecs DialoutPropertiesCodecs [optional]

Example

require 'daily-ruby'

instance = Daily::DialoutProperties.new(
  sip_uri: null,
  phone_number: null,
  display_name: null,
  video: null,
  codecs: null
)