Sha256: 474bdddc9689ffd5269e594e0623793fda7f4ca94a47d279cdac8239096339de
Contents?: true
Size: 1.05 KB
Versions: 54
Compression:
Stored size: 1.05 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Taskrouter class V1 < Version ## # Initialize the V1 version of Taskrouter def initialize(domain) super @version = 'v1' @workspaces = nil end ## # @param [String] sid The SID of the Workspace resource to fetch. # @return [Twilio::REST::Taskrouter::V1::WorkspaceContext] if sid was passed. # @return [Twilio::REST::Taskrouter::V1::WorkspaceList] def workspaces(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' end if sid == :unset @workspaces ||= WorkspaceList.new self else WorkspaceContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Taskrouter::V1>' end end end end end
Version data entries
54 entries across 54 versions & 1 rubygems