Class: Twilio::REST::Insights::V1::CallContext::MetricInstance

Inherits:
Twilio::REST::InstanceResource show all
Defined in:
lib/twilio-ruby/rest/insights/v1/call/metric.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, call_sid: nil) ⇒ MetricInstance

Initialize the MetricInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this Metric resource.

  • sid (String)

    The SID of the Call resource to fetch.



269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 269

def initialize(version, payload , call_sid: nil)
    super(version)
    
    
    # Marshaled Properties
    @properties = { 
        'timestamp' => payload['timestamp'],
        'call_sid' => payload['call_sid'],
        'account_sid' => payload['account_sid'],
        'edge' => payload['edge'],
        'direction' => payload['direction'],
        'carrier_edge' => payload['carrier_edge'],
        'sip_edge' => payload['sip_edge'],
        'sdk_edge' => payload['sdk_edge'],
        'client_edge' => payload['client_edge'],
    }
end

Instance Method Details

#account_sidString

Returns The unique SID identifier of the Account.

Returns:

  • (String)

    The unique SID identifier of the Account.



302
303
304
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 302

def 
    @properties['account_sid']
end

#call_sidString

Returns The unique SID identifier of the Call.

Returns:

  • (String)

    The unique SID identifier of the Call.



296
297
298
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 296

def call_sid
    @properties['call_sid']
end

#carrier_edgeHash

Returns Contains metrics and properties for the Twilio media gateway of a PSTN call.

Returns:

  • (Hash)

    Contains metrics and properties for the Twilio media gateway of a PSTN call.



320
321
322
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 320

def carrier_edge
    @properties['carrier_edge']
end

#client_edgeHash

Returns Contains metrics and properties for the Twilio media gateway of a Client call.

Returns:

  • (Hash)

    Contains metrics and properties for the Twilio media gateway of a Client call.



338
339
340
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 338

def client_edge
    @properties['client_edge']
end

#directionStreamDirection

Returns:

  • (StreamDirection)


314
315
316
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 314

def direction
    @properties['direction']
end

#edgeTwilioEdge

Returns:

  • (TwilioEdge)


308
309
310
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 308

def edge
    @properties['edge']
end

#inspectObject

Provide a detailed, user friendly representation



350
351
352
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 350

def inspect
    "<Twilio.Insights.V1.MetricInstance>"
end

#sdk_edgeHash

Returns Contains metrics and properties for the SDK sensor library for Client calls.

Returns:

  • (Hash)

    Contains metrics and properties for the SDK sensor library for Client calls.



332
333
334
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 332

def sdk_edge
    @properties['sdk_edge']
end

#sip_edgeHash

Returns Contains metrics and properties for the Twilio media gateway of a SIP Interface or Trunking call.

Returns:

  • (Hash)

    Contains metrics and properties for the Twilio media gateway of a SIP Interface or Trunking call.



326
327
328
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 326

def sip_edge
    @properties['sip_edge']
end

#timestampString

Returns Timestamp of metric sample. Samples are taken every 10 seconds and contain the metrics for the previous 10 seconds.

Returns:

  • (String)

    Timestamp of metric sample. Samples are taken every 10 seconds and contain the metrics for the previous 10 seconds.



290
291
292
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 290

def timestamp
    @properties['timestamp']
end

#to_sObject

Provide a user friendly representation



344
345
346
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 344

def to_s
    "<Twilio.Insights.V1.MetricInstance>"
end