Sha256: df5ef421016cee4ad8b48b46a82392f648f8c25623269794e55d311167aca658
Contents?: true
Size: 1.14 KB
Versions: 78
Compression:
Stored size: 1.14 KB
Contents
## # This code was generated by # \ / _ _ _| _ _ # | (_)\/(_)(_|\/| |(/_ v1.0.0 # / / # # frozen_string_literal: true module Twilio module REST class Autopilot < Domain ## # Initialize the Autopilot Domain def initialize(twilio) super @base_url = 'https://autopilot.twilio.com' @host = 'autopilot.twilio.com' @port = 443 # Versions @v1 = nil end ## # Version v1 of autopilot def v1 @v1 ||= V1.new self end ## # @param [String] sid The unique string that we created to identify the Assistant # resource. # @return [Twilio::REST::Autopilot::V1::AssistantInstance] if sid was passed. # @return [Twilio::REST::Autopilot::V1::AssistantList] def assistants(sid=:unset) self.v1.assistants(sid) end ## # @return [Twilio::REST::Autopilot::V1::RestoreAssistantInstance] def restore_assistant self.v1.restore_assistant() end ## # Provide a user friendly representation def to_s '#<Twilio::REST::Autopilot>' end end end end
Version data entries
78 entries across 78 versions & 1 rubygems