Sha256: 8d7531c907c040f850e4c1ff8f9878a5d25ca7db307991a68d7c293ce555ae13
Contents?: true
Size: 1.1 KB
Versions: 17
Compression:
Stored size: 1.1 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 A 34 character string that uniquely identifies this # resource. # @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
17 entries across 17 versions & 1 rubygems