Sha256: a6a3e2e7db3a3cc89798753542a00ea31e53948dca0df3db2242c45a7d476bf4
Contents?: true
Size: 1020 Bytes
Versions: 28
Compression:
Stored size: 1020 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 A 34 character string that uniquely identifies this Flow. # @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
28 entries across 28 versions & 1 rubygems