Sha256: 5c04471a20c395c5ade1c3464a8e44489e16773bed2623e43a25fa90b4b28105
Contents?: true
Size: 1000 Bytes
Versions: 42
Compression:
Stored size: 1000 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Studio class V1 < Version ## # Initialize the V1 version of Studio def initialize(domain) super @version = 'v1' @flows = nil end ## # @param [String] sid The SID of the Flow resource to fetch. # @return [Twilio::REST::Studio::V1::FlowContext] if sid was passed. # @return [Twilio::REST::Studio::V1::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::Studio::V1>' end end end end end
Version data entries
42 entries across 42 versions & 1 rubygems