class Twilio::REST::Insights::V1::CallContext::CallSummaryList
Public Class Methods
new(version, call_sid: nil)
click to toggle source
Initialize the CallSummaryList
@param [Version] version Version
that contains the resource @param [String] call_sid The call_sid @return [CallSummaryList] CallSummaryList
Calls superclass method
Twilio::REST::ListResource::new
# File lib/twilio-ruby/rest/insights/v1/call/summary.rb 20 def initialize(version, call_sid: nil) 21 super(version) 22 23 # Path Solution 24 @solution = {call_sid: call_sid} 25 end
Public Instance Methods
to_s()
click to toggle source
Provide a user friendly representation
# File lib/twilio-ruby/rest/insights/v1/call/summary.rb 29 def to_s 30 '#<Twilio.Insights.V1.CallSummaryList>' 31 end