Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.17 KB

WaitingParticipantJoinedPayload.md

File metadata and controls

32 lines (26 loc) · 1.17 KB

Daily::WaitingParticipantJoinedPayload

Properties

Name Type Description Notes
joined_at Float The Unix epoch time in seconds representing when the waiting participant joined. [optional]
session_id String The user session ID, or participant id. [optional]
room String The name of the room. [optional]
user_id String The ID of the user, set by the meeting token. [optional]
user_name String The name of the user, set by the meeting token. [optional]
owner Boolean A flag determining if this user is considered the owner. [optional]
will_eject_at Integer The Unix epoch time in seconds representing when the participant will be ejected. [optional]
permissions ParticipantJoinedPayloadPermissions [optional]

Example

require 'daily-ruby'

instance = Daily::WaitingParticipantJoinedPayload.new(
  joined_at: null,
  session_id: null,
  room: null,
  user_id: null,
  user_name: null,
  owner: null,
  will_eject_at: null,
  permissions: null
)