Class: Twilio::REST::Verify::V2::VerificationAttemptInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/verify/v2/verification_attempt.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, sid: nil) ⇒ VerificationAttemptInstance

Initialize the VerificationAttemptInstance

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 VerificationAttempt resource.

  • sid (String) (defaults to: nil)

    The SID of the Call resource to fetch.



256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 256

def initialize(version, payload , sid: nil)
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'service_sid' => payload['service_sid'],
        'verification_sid' => payload['verification_sid'],
        'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']),
        'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']),
        'conversion_status' => payload['conversion_status'],
        'channel' => payload['channel'],
        'price' => payload['price'],
        'channel_data' => payload['channel_data'],
        'url' => payload['url'],
    }

    # Context
    @instance_context = nil
    @params = { 'sid' => sid  || @properties['sid']  , }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created the Verification resource.

Returns:



298
299
300
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 298

def 
    @properties['account_sid']
end

#channelChannels

Returns:

  • (Channels)


334
335
336
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 334

def channel
    @properties['channel']
end

#channel_dataHash

Returns An object containing the channel specific information for an attempt.

Returns:

  • (Hash)

    An object containing the channel specific information for an attempt.



346
347
348
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 346

def channel_data
    @properties['channel_data']
end

#contextVerificationAttemptContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



283
284
285
286
287
288
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 283

def context
    unless @instance_context
        @instance_context = VerificationAttemptContext.new(@version , @params['sid'])
    end
    @instance_context
end

#conversion_statusConversionStatus

Returns:

  • (ConversionStatus)


328
329
330
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 328

def conversion_status
    @properties['conversion_status']
end

#date_createdTime

Returns The date that this Attempt was created, given in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



316
317
318
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 316

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date that this Attempt was updated, given in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



322
323
324
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 322

def date_updated
    @properties['date_updated']
end

#fetchVerificationAttemptInstance

Fetch the VerificationAttemptInstance

Returns:



359
360
361
362
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 359

def fetch

    context.fetch
end

#inspectObject

Provide a detailed, user friendly representation



373
374
375
376
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 373

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Verify.V2.VerificationAttemptInstance #{values}>"
end

#priceHash

Returns An object containing the charge for this verification attempt related to the channel costs and the currency used. The costs related to the succeeded verifications are not included. May not be immediately available. More information on pricing is available [here](www.twilio.com/verify/pricing).

Returns:

  • (Hash)

    An object containing the charge for this verification attempt related to the channel costs and the currency used. The costs related to the succeeded verifications are not included. May not be immediately available. More information on pricing is available [here](www.twilio.com/verify/pricing).



340
341
342
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 340

def price
    @properties['price']
end

#service_sidString

Returns The SID of the [Service](www.twilio.com/docs/verify/api/service) used to generate the attempt.

Returns:



304
305
306
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 304

def service_sid
    @properties['service_sid']
end

#sidString

Returns The SID that uniquely identifies the verification attempt resource.

Returns:

  • (String)

    The SID that uniquely identifies the verification attempt resource.



292
293
294
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 292

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



366
367
368
369
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 366

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Verify.V2.VerificationAttemptInstance #{values}>"
end

#urlString

Returns:

  • (String)


352
353
354
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 352

def url
    @properties['url']
end

#verification_sidString

Returns The SID of the [Verification](www.twilio.com/docs/verify/api/verification) that generated the attempt.

Returns:



310
311
312
# File 'lib/twilio-ruby/rest/verify/v2/verification_attempt.rb', line 310

def verification_sid
    @properties['verification_sid']
end