Sha256: 2d2cc1204e92c7cff50e6ac8415ec5b93e351ca57dd667ba180278073dd6529c
Contents?: true
Size: 1020 Bytes
Versions: 2
Compression:
Stored size: 1020 Bytes
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 The sid # @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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
twilio-ruby-5.15.1 | lib/twilio-ruby/rest/autopilot/v1.rb |
twilio-ruby-5.15.0 | lib/twilio-ruby/rest/autopilot/v1.rb |