Sha256: b541b1744bae512b1f77ed6a0f64baac214c33c1e155adbb1a5bc90c01000b93
Contents?: true
Size: 1.67 KB
Versions: 53
Compression:
Stored size: 1.67 KB
Contents
## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Taskrouter # This is the public Twilio REST API. # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # 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
53 entries across 53 versions & 2 rubygems