Sha256: 09aa35768394f414b0ae30affa84e4d3075fa5180dc0d29ad6ef1afd20a43548
Contents?: true
Size: 1.04 KB
Versions: 40
Compression:
Stored size: 1.04 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' elsif 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
40 entries across 40 versions & 1 rubygems