Class: Twilio::REST::Verify::V2::ServiceContext::EntityInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/verify/v2/service/entity.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, service_sid: nil, identity: nil) ⇒ EntityInstance

Initialize the EntityInstance



299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 299

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

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

Instance Method Details

#account_sidString



344
345
346
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 344

def 
    @properties['account_sid']
end

#challengeschallenges

Access the challenges



411
412
413
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 411

def challenges
    context.challenges
end

#contextEntityContext

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



323
324
325
326
327
328
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 323

def context
    unless @instance_context
        @instance_context = EntityContext.new(@version , @params['service_sid'], @params['identity'])
    end
    @instance_context
end

#date_createdTime



356
357
358
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 356

def date_created
    @properties['date_created']
end

#date_updatedTime



362
363
364
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 362

def date_updated
    @properties['date_updated']
end

#deleteBoolean

Delete the EntityInstance



381
382
383
384
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 381

def delete

    context.delete
end

#factorsfactors

Access the factors



404
405
406
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 404

def factors
    context.factors
end

#fetchEntityInstance

Fetch the EntityInstance



389
390
391
392
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 389

def fetch

    context.fetch
end

#identityString



338
339
340
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 338

def identity
    @properties['identity']
end

#inspectObject

Provide a detailed, user friendly representation



424
425
426
427
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 424

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


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

def links
    @properties['links']
end

#new_factorsnew_factors

Access the new_factors



397
398
399
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 397

def new_factors
    context.new_factors
end

#service_sidString



350
351
352
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 350

def service_sid
    @properties['service_sid']
end

#sidString



332
333
334
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 332

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



417
418
419
420
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 417

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

#urlString



368
369
370
# File 'lib/twilio-ruby/rest/verify/v2/service/entity.rb', line 368

def url
    @properties['url']
end