Class: Twilio::REST::Insights::V1::CallInstance
- Inherits:
-
Twilio::REST::InstanceResource
- Object
- Twilio::REST::InstanceResource
- Twilio::REST::Insights::V1::CallInstance
- Defined in:
- lib/twilio-ruby/rest/insights/v1/call.rb
Instance Method Summary collapse
-
#annotation ⇒ annotation
Access the annotation.
-
#context ⇒ CallContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#events ⇒ events
Access the events.
-
#fetch ⇒ CallInstance
Fetch the CallInstance.
-
#initialize(version, payload, sid: nil) ⇒ CallInstance
constructor
Initialize the CallInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
- #links ⇒ Hash
-
#metrics ⇒ metrics
Access the metrics.
- #sid ⇒ String
-
#summary ⇒ summary
Access the summary.
-
#to_s ⇒ Object
Provide a user friendly representation.
- #url ⇒ String
Constructor Details
#initialize(version, payload, sid: nil) ⇒ CallInstance
Initialize the CallInstance
177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 177 def initialize(version, payload , sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'url' => payload['url'], 'links' => payload['links'], } # Context @instance_context = nil @params = { 'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#annotation ⇒ annotation
Access the annotation
253 254 255 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 253 def annotation context.annotation end |
#context ⇒ CallContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
196 197 198 199 200 201 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 196 def context unless @instance_context @instance_context = CallContext.new(@version , @params['sid']) end @instance_context end |
#events ⇒ events
Access the events
239 240 241 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 239 def events context.events end |
#fetch ⇒ CallInstance
Fetch the CallInstance
224 225 226 227 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 224 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
266 267 268 269 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 266 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Insights.V1.CallInstance #{values}>" end |
#links ⇒ Hash
217 218 219 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 217 def links @properties['links'] end |
#metrics ⇒ metrics
Access the metrics
232 233 234 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 232 def metrics context.metrics end |
#sid ⇒ String
205 206 207 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 205 def sid @properties['sid'] end |
#summary ⇒ summary
Access the summary
246 247 248 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 246 def summary context.summary end |
#to_s ⇒ Object
Provide a user friendly representation
259 260 261 262 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 259 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Insights.V1.CallInstance #{values}>" end |
#url ⇒ String
211 212 213 |
# File 'lib/twilio-ruby/rest/insights/v1/call.rb', line 211 def url @properties['url'] end |