Sha256: 31060c7d5654482bea70267cb3c31927dc1923f78bed1033c38adfbbebaac23d
Contents?: true
Size: 902 Bytes
Versions: 6
Compression:
Stored size: 902 Bytes
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 == :unset @recordings ||= RecordingList.new self else RecordingContext.new(self, sid) end end def rooms(sid=:unset) if 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
6 entries across 6 versions & 1 rubygems