Sha256: b9b99bf9c0a46fe03d08ce5f1b3e1b1f6bbba9998b5c2abfbf2507a0d616148e
Contents?: true
Size: 724 Bytes
Versions: 24
Compression:
Stored size: 724 Bytes
Contents
module Twilio module REST class Autopilot < AutopilotBase ## # @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) warn "assistants is deprecated. Use v1.assistants instead." self.v1.assistants(sid) end ## # @return [Twilio::REST::Autopilot::V1::RestoreAssistantInstance] def restore_assistant warn "restore_assistant is deprecated. Use v1.restore_assistant instead." self.v1.restore_assistant() end end end end
Version data entries
24 entries across 24 versions & 2 rubygems