Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1020 Bytes

File metadata and controls

28 lines (22 loc) · 1020 Bytes

UltracartClient::ConversationEmbedPbxAuthResponse

Properties

Name Type Description Notes
merchant_id String Merchant identifier the agent belongs to. [optional]
pbx_admin Boolean True if this agent has PBX admin privileges. [optional]
pbx_jwt String JWT used by the softphone widget to authenticate to the PBX WebSocket relay. [optional]
pbx_supervisor Boolean True if this agent has PBX supervisor privileges. [optional]
pbx_user Boolean True if this agent has baseline PBX access. [optional]
pbx_voice_identity String Voice identity string identifying this agent to the PBX (e.g., client:user_123). [optional]

Example

require 'ultracart_api'

instance = UltracartClient::ConversationEmbedPbxAuthResponse.new(
  merchant_id: null,
  pbx_admin: null,
  pbx_jwt: null,
  pbx_supervisor: null,
  pbx_user: null,
  pbx_voice_identity: null
)