Sha256: 2f78968faf47d80ece19212a1c6a507407e48f7daf6d454d65da19576b6ccd0f
Contents?: true
Size: 975 Bytes
Versions: 37
Compression:
Stored size: 975 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
37 entries across 37 versions & 1 rubygems