Sha256: 73c00c0aa9b876bf74bc4573ba17865d257804aad11091aeac42ca0611fb2cd1
Contents?: true
Size: 1.03 KB
Versions: 2
Compression:
Stored size: 1.03 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / module Twilio module REST class Video class V1 < Version ## # Initialize the V1 version of Video def initialize(domain) super @version = 'v1' @recordings = nil @rooms = nil end def recordings(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @recordings ||= RecordingList.new self else RecordingContext.new(self, sid) end end def rooms(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @rooms ||= RoomList.new self else RoomContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Video::V1>' end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.0.0.rc26 | lib/twilio-ruby/rest/video/v1.rb |
twilio-ruby-5.0.0.rc25 | lib/twilio-ruby/rest/video/v1.rb |