Sha256: 9d8b729da276c6e8e5b0f98603b3a41c37234e2f79334fbf9c89ee6930e99f8b
Contents?: true
Size: 1017 Bytes
Versions: 54
Compression:
Stored size: 1017 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' end if 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
54 entries across 54 versions & 1 rubygems