Sha256: 38d9d44a3e0888210cfacda47f2e2e60d6329aadcf2b42c008fcd0d1622ffa95
Contents?: true
Size: 966 Bytes
Versions: 9
Compression:
Stored size: 966 Bytes
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Studio < Domain ## # Initialize the Studio Domain def initialize(twilio) super @base_url = 'https://studio.twilio.com' @host = 'studio.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of studio def v1 @v1 ||= V1.new self end ## # @param [String] sid The unique string that we created to identify the Flow # resource. # @return [Twilio::REST::Studio::V1::FlowInstance] if sid was passed. # @return [Twilio::REST::Studio::V1::FlowList] def flows(sid=:unset) self.v1.flows(sid) end ## # Provide a user friendly representation def to_s '#<Twilio::REST::Studio>' end end end end
Version data entries
9 entries across 9 versions & 1 rubygems