Sha256: be423bdcdfd7325da1c87afa302a1902e6eaab84a3beb840b6a7f22e72669baf
Contents?: true
Size: 1.39 KB
Versions: 16
Compression:
Stored size: 1.39 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 ## # @param [String] sid The sid # @return [Twilio::REST::Video::V1::RecordingInstance] if sid was passed. # @return [Twilio::REST::Video::V1::RecordingList] 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 ## # @param [String] sid The sid # @return [Twilio::REST::Video::V1::RoomInstance] if sid was passed. # @return [Twilio::REST::Video::V1::RoomList] 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
16 entries across 16 versions & 1 rubygems