Sha256: a89d15336cafc902ddc41b91b11925471877a9d4769749f38c9de4cfff4cb48e
Contents?: true
Size: 999 Bytes
Versions: 13
Compression:
Stored size: 999 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Preview class Studio < Version ## # Initialize the Studio version of Preview def initialize(domain) super @version = 'Studio' @flows = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Preview::Studio::FlowContext] if sid was passed. # @return [Twilio::REST::Preview::Studio::FlowList] def flows(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @flows ||= FlowList.new self else FlowContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Preview::Studio>' end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems