Class: Twilio::REST::Voice::V1::ArchivedCallContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Voice::V1::ArchivedCallContext
- Defined in:
- lib/twilio-ruby/rest/voice/v1/archived_call.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#delete ⇒ Boolean
Delete the ArchivedCallInstance.
-
#initialize(version, date, sid) ⇒ ArchivedCallContext
constructor
Initialize the ArchivedCallContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, date, sid) ⇒ ArchivedCallContext
Initialize the ArchivedCallContext
75 76 77 78 79 80 81 |
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 75 def initialize(version, date, sid) super(version) # Path Solution @solution = {date: date, sid: sid, } @uri = "/Archives/#{@solution[:date]}/Calls/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Delete the ArchivedCallInstance
86 87 88 |
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 86 def delete @version.delete('DELETE', @uri) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
99 100 101 102 |
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 99 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Voice.V1.ArchivedCallContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
92 93 94 95 |
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 92 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Voice.V1.ArchivedCallContext #{context}>" end |