Sha256: 639107a43ba2bd1aba838c0a9b30517871c45c1cea36fa4f93f336f1aa22aa60
Contents?: true
Size: 970 Bytes
Versions: 9
Compression:
Stored size: 970 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 # @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
9 entries across 9 versions & 1 rubygems