## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class FlexApi < Domain ## # Initialize the FlexApi Domain def initialize(twilio) super @base_url = 'https://flex-api.twilio.com' @host = 'flex-api.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of flex_api def v1 @v1 ||= V1.new self end ## # @param [String] sid The unique string that we created to identify the Channel # resource. # @return [Twilio::REST::Flex_api::V1::ChannelInstance] if sid was passed. # @return [Twilio::REST::Flex_api::V1::ChannelList] def channel(sid=:unset) self.v1.channel(sid) end ## # @return [Twilio::REST::Flex_api::V1::ConfigurationInstance] def configuration self.v1.configuration() end ## # @param [String] sid The unique string that we created to identify the Flex Flow # resource. # @return [Twilio::REST::Flex_api::V1::FlexFlowInstance] if sid was passed. # @return [Twilio::REST::Flex_api::V1::FlexFlowList] def flex_flow(sid=:unset) self.v1.flex_flow(sid) end ## # @param [String] sid The unique string created by Twilio to identify an # Interaction resource. # @return [Twilio::REST::Flex_api::V1::InteractionInstance] if sid was passed. # @return [Twilio::REST::Flex_api::V1::InteractionList] def interaction(sid=:unset) self.v1.interaction(sid) end ## # @param [String] sid The unique string that we created to identify the WebChannel # resource. # @return [Twilio::REST::Flex_api::V1::WebChannelInstance] if sid was passed. # @return [Twilio::REST::Flex_api::V1::WebChannelList] def web_channel(sid=:unset) self.v1.web_channel(sid) end ## # Provide a user friendly representation def to_s '#' end end end end