Sha256: 701eaca3bbf49483b388902b91db72da7a15fe1a528854b5f62adbe6ff03825f
Contents?: true
Size: 1.03 KB
Versions: 20
Compression:
Stored size: 1.03 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Preview class Understand < Version ## # Initialize the Understand version of Preview def initialize(domain) super @version = 'understand' @assistants = nil end ## # @param [String] sid The sid # @return [Twilio::REST::Preview::Understand::AssistantContext] if sid was passed. # @return [Twilio::REST::Preview::Understand::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::Preview::Understand>' end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems