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