class Twilio::REST::Api::V2010::AccountContext::CallContext::FeedbackList

Public Class Methods

new(version, account_sid: nil, call_sid: nil) click to toggle source

Initialize the FeedbackList @param [Version] version Version that contains the resource @param [String] account_sid The unique id of the

{Account}[https://www.twilio.com/docs/iam/api/account] responsible for this
resource.

@param [String] call_sid The unique string that we created to identify this Call

resource.

@return [FeedbackList] FeedbackList

Calls superclass method Twilio::REST::ListResource::new
   # File lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb
25 def initialize(version, account_sid: nil, call_sid: nil)
26   super(version)
27 
28   # Path Solution
29   @solution = {account_sid: account_sid, call_sid: call_sid}
30 end

Public Instance Methods

to_s() click to toggle source

Provide a user friendly representation

   # File lib/twilio-ruby/rest/api/v2010/account/call/feedback.rb
34 def to_s
35   '#<Twilio.Api.V2010.FeedbackList>'
36 end