Class: Twilio::REST::Video::V1::RoomInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/video/v1/room.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ RoomInstance

Initialize the RoomInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • sid (String) (defaults to: nil)

    The SID of the Room resource to fetch.



361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 361

def initialize(version, payload, sid: nil)
  super(version)

  # Marshaled Properties
  @properties = {
      'sid' => payload['sid'],
      'status' => payload['status'],
      'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
      'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
      'account_sid' => payload['account_sid'],
      'enable_turn' => payload['enable_turn'],
      'unique_name' => payload['unique_name'],
      'status_callback' => payload['status_callback'],
      'status_callback_method' => payload['status_callback_method'],
      'end_time' => Twilio.deserialize_iso8601_datetime(payload['end_time']),
      'duration' => payload['duration'] == nil ? payload['duration'] : payload['duration'].to_i,
      'type' => payload['type'],
      'max_participants' => payload['max_participants'].to_i,
      'max_participant_duration' => payload['max_participant_duration'].to_i,
      'max_concurrent_published_tracks' => payload['max_concurrent_published_tracks'] == nil ? payload['max_concurrent_published_tracks'] : payload['max_concurrent_published_tracks'].to_i,
      'record_participants_on_connect' => payload['record_participants_on_connect'],
      'video_codecs' => payload['video_codecs'],
      'media_region' => payload['media_region'],
      'audio_only' => payload['audio_only'],
      'empty_room_timeout' => payload['empty_room_timeout'].to_i,
      'unused_room_timeout' => payload['unused_room_timeout'].to_i,
      'url' => payload['url'],
      'links' => payload['links'],
  }

  # Context
  @instance_context = nil
  @params = {'sid' => sid || @properties['sid'], }
end

Instance Method Details

#account_sidString

Returns The SID of the Account that created the resource.

Returns:

  • (String)

    The SID of the Account that created the resource



433
434
435
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 433

def 
  @properties['account_sid']
end

#audio_onlyBoolean

Returns Indicates whether the room will only contain audio track participants for group rooms.

Returns:

  • (Boolean)

    Indicates whether the room will only contain audio track participants for group rooms.



517
518
519
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 517

def audio_only
  @properties['audio_only']
end

#contextRoomContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



400
401
402
403
404
405
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 400

def context
  unless @instance_context
    @instance_context = RoomContext.new(@version, @params['sid'], )
  end
  @instance_context
end

#date_createdTime

Returns The ISO 8601 date and time in GMT when the resource was created.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was created



421
422
423
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 421

def date_created
  @properties['date_created']
end

#date_updatedTime

Returns The ISO 8601 date and time in GMT when the resource was last updated.

Returns:

  • (Time)

    The ISO 8601 date and time in GMT when the resource was last updated



427
428
429
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 427

def date_updated
  @properties['date_updated']
end

#durationString

Returns The duration of the room in seconds.

Returns:

  • (String)

    The duration of the room in seconds



469
470
471
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 469

def duration
  @properties['duration']
end

#empty_room_timeoutString

Returns The time a room will remain active after last participant leaves.

Returns:

  • (String)

    The time a room will remain active after last participant leaves.



523
524
525
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 523

def empty_room_timeout
  @properties['empty_room_timeout']
end

#enable_turnBoolean

Returns Enable Twilio’s Network Traversal TURN service.

Returns:

  • (Boolean)

    Enable Twilio’s Network Traversal TURN service



439
440
441
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 439

def enable_turn
  @properties['enable_turn']
end

#end_timeTime

Returns The UTC end time of the room in UTC ISO 8601 format.

Returns:

  • (Time)

    The UTC end time of the room in UTC ISO 8601 format



463
464
465
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 463

def end_time
  @properties['end_time']
end

#fetchRoomInstance

Fetch the RoomInstance

Returns:



548
549
550
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 548

def fetch
  context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



591
592
593
594
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 591

def inspect
  values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Video.V1.RoomInstance #{values}>"
end

Returns The URLs of related resources.

Returns:

  • (String)

    The URLs of related resources



541
542
543
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 541

def links
  @properties['links']
end

#max_concurrent_published_tracksString

Returns The maximum number of published tracks allowed in the room at the same time.

Returns:

  • (String)

    The maximum number of published tracks allowed in the room at the same time



493
494
495
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 493

def max_concurrent_published_tracks
  @properties['max_concurrent_published_tracks']
end

#max_participant_durationString

Returns The maximum number of seconds a Participant can be connected to the room.

Returns:

  • (String)

    The maximum number of seconds a Participant can be connected to the room



487
488
489
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 487

def max_participant_duration
  @properties['max_participant_duration']
end

#max_participantsString

Returns The maximum number of concurrent Participants allowed in the room.

Returns:

  • (String)

    The maximum number of concurrent Participants allowed in the room



481
482
483
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 481

def max_participants
  @properties['max_participants']
end

#media_regionString

Returns The region for the media server in Group Rooms.

Returns:

  • (String)

    The region for the media server in Group Rooms



511
512
513
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 511

def media_region
  @properties['media_region']
end

#participantsparticipants

Access the participants

Returns:



571
572
573
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 571

def participants
  context.participants
end

#record_participants_on_connectBoolean

Returns Whether to start recording when Participants connect.

Returns:

  • (Boolean)

    Whether to start recording when Participants connect



499
500
501
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 499

def record_participants_on_connect
  @properties['record_participants_on_connect']
end

#recording_rulesrecording_rules

Access the recording_rules

Returns:



578
579
580
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 578

def recording_rules
  context.recording_rules
end

#recordingsrecordings

Access the recordings

Returns:



564
565
566
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 564

def recordings
  context.recordings
end

#sidString

Returns The unique string that identifies the resource.

Returns:

  • (String)

    The unique string that identifies the resource



409
410
411
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 409

def sid
  @properties['sid']
end

#statusroom.RoomStatus

Returns The status of the room.

Returns:

  • (room.RoomStatus)

    The status of the room



415
416
417
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 415

def status
  @properties['status']
end

#status_callbackString

Returns The URL to send status information to your application.

Returns:

  • (String)

    The URL to send status information to your application



451
452
453
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 451

def status_callback
  @properties['status_callback']
end

#status_callback_methodString

Returns The HTTP method we use to call status_callback.

Returns:

  • (String)

    The HTTP method we use to call status_callback



457
458
459
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 457

def status_callback_method
  @properties['status_callback_method']
end

#to_sObject

Provide a user friendly representation



584
585
586
587
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 584

def to_s
  values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
  "<Twilio.Video.V1.RoomInstance #{values}>"
end

#typeroom.RoomType

Returns The type of room.

Returns:

  • (room.RoomType)

    The type of room



475
476
477
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 475

def type
  @properties['type']
end

#unique_nameString

Returns An application-defined string that uniquely identifies the resource.

Returns:

  • (String)

    An application-defined string that uniquely identifies the resource



445
446
447
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 445

def unique_name
  @properties['unique_name']
end

#unused_room_timeoutString

Returns The time a room will remain active when no one joins.

Returns:

  • (String)

    The time a room will remain active when no one joins.



529
530
531
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 529

def unused_room_timeout
  @properties['unused_room_timeout']
end

#update(status: nil) ⇒ RoomInstance

Update the RoomInstance

Parameters:

  • status (room.RoomStatus) (defaults to: nil)

    The new status of the resource. Set to ‘completed` to end the room.

Returns:



557
558
559
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 557

def update(status: nil)
  context.update(status: status, )
end

#urlString

Returns The absolute URL of the resource.

Returns:

  • (String)

    The absolute URL of the resource



535
536
537
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 535

def url
  @properties['url']
end

#video_codecsArray[room.VideoCodec]

Returns An array of the video codecs that are supported when publishing a track in the room.

Returns:

  • (Array[room.VideoCodec])

    An array of the video codecs that are supported when publishing a track in the room



505
506
507
# File 'lib/twilio-ruby/rest/video/v1/room.rb', line 505

def video_codecs
  @properties['video_codecs']
end