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.



178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 178

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.



210
211
212
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 210

def 
    @properties['account_sid']
end

#call_sidString

Returns The unique SID identifier of the Call.

Returns:

  • (String)

    The unique SID identifier of the Call.



204
205
206
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 204

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.



228
229
230
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 228

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.



246
247
248
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 246

def client_edge
    @properties['client_edge']
end

#directionStreamDirection

Returns:

  • (StreamDirection)


222
223
224
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 222

def direction
    @properties['direction']
end

#edgeTwilioEdge

Returns:

  • (TwilioEdge)


216
217
218
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 216

def edge
    @properties['edge']
end

#inspectObject

Provide a detailed, user friendly representation



258
259
260
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 258

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.



240
241
242
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 240

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.



234
235
236
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 234

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.



198
199
200
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 198

def timestamp
    @properties['timestamp']
end

#to_sObject

Provide a user friendly representation



252
253
254
# File 'lib/twilio-ruby/rest/insights/v1/call/metric.rb', line 252

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