Class: Twilio::REST::Voice::V1::ArchivedCallContext

Inherits:
InstanceContext show all
Defined in:
lib/twilio-ruby/rest/voice/v1/archived_call.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, date, sid) ⇒ ArchivedCallContext

Initialize the ArchivedCallContext

Parameters:

  • version (Version)

    Version that contains the resource

  • date (Date)

    The date of the Call in UTC.

  • sid (String)

    The Twilio-provided Call SID that uniquely identifies the Call resource to delete



50
51
52
53
54
55
56
57
58
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 50

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

#deleteBoolean

Delete the ArchivedCallInstance

Returns:

  • (Boolean)

    True if delete succeeds, false otherwise



62
63
64
65
66
67
68
69
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 62

def delete

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    @version.delete('DELETE', @uri, headers: headers)
end

#inspectObject

Provide a detailed, user friendly representation



81
82
83
84
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 81

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Voice.V1.ArchivedCallContext #{context}>"
end

#to_sObject

Provide a user friendly representation



74
75
76
77
# File 'lib/twilio-ruby/rest/voice/v1/archived_call.rb', line 74

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Voice.V1.ArchivedCallContext #{context}>"
end