Sha256: ca099252432ab89d951538ca01caa2eb8ccbea512b956fa1468c5d0593c63cef
Contents?: true
Size: 974 Bytes
Versions: 9
Compression:
Stored size: 974 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 ID of the Workspace # @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
9 entries across 9 versions & 1 rubygems