Sha256: 464db4c4dbdb501898bd8fbb6d2c007f29eb6b30d219798da1a0724c1c38be3e
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class FlexApi class V1 < Version ## # Initialize the V1 version of FlexApi def initialize(domain) super @version = 'v1' @configuration = nil @flex_flow = nil end ## # @return [Twilio::REST::Flex_api::V1::ConfigurationContext] def configuration @configuration ||= ConfigurationContext.new self end ## # @param [String] sid The unique ID of the FlexFlow # @return [Twilio::REST::Flex_api::V1::FlexFlowContext] if sid was passed. # @return [Twilio::REST::Flex_api::V1::FlexFlowList] def flex_flow(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @flex_flow ||= FlexFlowList.new self else FlexFlowContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::FlexApi::V1>' end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.25.2 | lib/twilio-ruby/rest/flex_api/v1.rb |