Sha256: 075c7bc80809f4935ccc8edcbf3cf5e7085f1aafbe9740858087a6a0b0e2937f
Contents?: true
Size: 1 KB
Versions: 37
Compression:
Stored size: 1 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 # @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
37 entries across 37 versions & 1 rubygems