Sha256: 2e98037aa87542d25e93a47930b0bd3d17f77b5e0c1ece09689ddb8ec5d709ea
Contents?: true
Size: 1.06 KB
Versions: 12
Compression:
Stored size: 1.06 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Autopilot class V1 < Version ## # Initialize the V1 version of Autopilot def initialize(domain) super @version = 'v1' @assistants = nil end ## # @param [String] sid A 34-character string that uniquely identifies this # resource. # @return [Twilio::REST::Autopilot::V1::AssistantContext] if sid was passed. # @return [Twilio::REST::Autopilot::V1::AssistantList] def assistants(sid=:unset) if sid.nil? raise ArgumentError, 'sid cannot be nil' elsif sid == :unset @assistants ||= AssistantList.new self else AssistantContext.new(self, sid) end end ## # Provide a user friendly representation def to_s '<Twilio::REST::Autopilot::V1>' end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems