Class: Twilio::REST::Insights::V1::CallContext
- Inherits:
-
Twilio::REST::InstanceContext
- Object
- Twilio::REST::InstanceContext
- Twilio::REST::Insights::V1::CallContext
- Defined in:
- lib/twilio-ruby/rest/insights/v1/call.rb,
lib/twilio-ruby/rest/insights/v1/call/event.rb,
lib/twilio-ruby/rest/insights/v1/call/metric.rb,
lib/twilio-ruby/rest/insights/v1/call/annotation.rb,
lib/twilio-ruby/rest/insights/v1/call/call_summary.rb
Defined Under Namespace
Classes: AnnotationContext, AnnotationInstance, AnnotationList, AnnotationPage, CallSummaryContext, CallSummaryInstance, CallSummaryList, CallSummaryPage, EventInstance, EventList, EventPage, MetricInstance, MetricList, MetricPage
Instance Method Summary collapse
-
#annotation ⇒ AnnotationList, AnnotationContext
Access the annotation.
-
#events ⇒ EventList, EventContext
Access the events.
-
#fetch ⇒ CallInstance
Fetch the CallInstance.
-
#initialize(version, sid) ⇒ CallContext
constructor
Initialize the CallContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#metrics ⇒ MetricList, MetricContext
Access the metrics.
-
#summary ⇒ CallSummaryList, CallSummaryContext
Access the summary.
-
#to_s ⇒ Object
Provide a user friendly representation.
Constructor Details
#initialize(version, sid) ⇒ CallContext
Initialize the CallContext
48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 48 def initialize(version, sid) super(version) # Path Solution @solution = { sid: sid, } @uri = "/Voice/#{@solution[:sid]}" # Dependents @metrics = nil @events = nil @summary = nil @annotation = nil end |
Instance Method Details
#annotation ⇒ AnnotationList, AnnotationContext
Access the annotation
110 111 112 113 114 115 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 110 def annotation AnnotationContext.new( @version, @solution[:sid] ) end |
#events ⇒ EventList, EventContext
Access the events
89 90 91 92 93 94 95 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 89 def events unless @events @events = EventList.new( @version, call_sid: @solution[:sid], ) end @events end |
#fetch ⇒ CallInstance
Fetch the CallInstance
64 65 66 67 68 69 70 71 72 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 64 def fetch payload = @version.fetch('GET', @uri) CallInstance.new( @version, payload, sid: @solution[:sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
126 127 128 129 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 126 def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Insights.V1.CallContext #{context}>" end |
#metrics ⇒ MetricList, MetricContext
Access the metrics
78 79 80 81 82 83 84 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 78 def metrics unless @metrics @metrics = MetricList.new( @version, call_sid: @solution[:sid], ) end @metrics end |
#summary ⇒ CallSummaryList, CallSummaryContext
Access the summary
100 101 102 103 104 105 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 100 def summary CallSummaryContext.new( @version, @solution[:sid] ) end |
#to_s ⇒ Object
Provide a user friendly representation
119 120 121 122 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 119 def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Insights.V1.CallContext #{context}>" end |