Class: Twilio::REST::Verify::V2::ServiceContext::EntityContext::FactorInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Verify::V2::ServiceContext::EntityContext::FactorInstance
- Defined in:
- lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#account_sid ⇒ String
Account Sid.
-
#config ⇒ Hash
Configurations for a ‘factor_type`.
-
#context ⇒ FactorContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this Factor was created.
-
#date_updated ⇒ Time
The date this Factor was updated.
-
#delete ⇒ Boolean
Delete the FactorInstance.
-
#entity_sid ⇒ String
Entity Sid.
-
#factor_type ⇒ factor.FactorTypes
The Type of this Factor.
-
#fetch ⇒ FactorInstance
Fetch the FactorInstance.
-
#friendly_name ⇒ String
A human readable description of this resource.
-
#identity ⇒ String
Unique external identifier of the Entity.
-
#initialize(version, payload, service_sid: nil, identity: nil, sid: nil) ⇒ FactorInstance
constructor
Initialize the FactorInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#service_sid ⇒ String
Service Sid.
-
#sid ⇒ String
A string that uniquely identifies this Factor.
-
#status ⇒ factor.FactorStatuses
The Status of this Factor.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(auth_payload: :unset, friendly_name: :unset, config_notification_token: :unset, config_sdk_version: :unset, config_time_step: :unset, config_skew: :unset, config_code_length: :unset, config_alg: :unset) ⇒ FactorInstance
Update the FactorInstance.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, service_sid: nil, identity: nil, sid: nil) ⇒ FactorInstance
Initialize the FactorInstance
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 273 def initialize(version, payload, service_sid: nil, identity: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'service_sid' => payload['service_sid'], 'entity_sid' => payload['entity_sid'], 'identity' => payload['identity'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'friendly_name' => payload['friendly_name'], 'status' => payload['status'], 'factor_type' => payload['factor_type'], 'config' => payload['config'], 'url' => payload['url'], } # Context @instance_context = nil @params = {'service_sid' => service_sid, 'identity' => identity, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
321 322 323 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 321 def account_sid @properties['account_sid'] end |
#config ⇒ Hash
Returns Configurations for a ‘factor_type`.
375 376 377 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 375 def config @properties['config'] end |
#context ⇒ FactorContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
301 302 303 304 305 306 307 308 309 310 311 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 301 def context unless @instance_context @instance_context = FactorContext.new( @version, @params['service_sid'], @params['identity'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date this Factor was created.
345 346 347 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 345 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this Factor was updated.
351 352 353 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 351 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the FactorInstance
388 389 390 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 388 def delete context.delete end |
#entity_sid ⇒ String
Returns Entity Sid.
333 334 335 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 333 def entity_sid @properties['entity_sid'] end |
#factor_type ⇒ factor.FactorTypes
Returns The Type of this Factor.
369 370 371 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 369 def factor_type @properties['factor_type'] end |
#fetch ⇒ FactorInstance
Fetch the FactorInstance
395 396 397 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 395 def fetch context.fetch end |
#friendly_name ⇒ String
Returns A human readable description of this resource.
357 358 359 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 357 def friendly_name @properties['friendly_name'] end |
#identity ⇒ String
Returns Unique external identifier of the Entity.
339 340 341 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 339 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
443 444 445 446 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 443 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Verify.V2.FactorInstance #{values}>" end |
#service_sid ⇒ String
Returns Service Sid.
327 328 329 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 327 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Factor.
315 316 317 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 315 def sid @properties['sid'] end |
#status ⇒ factor.FactorStatuses
Returns The Status of this Factor.
363 364 365 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 363 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
436 437 438 439 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 436 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Verify.V2.FactorInstance #{values}>" end |
#update(auth_payload: :unset, friendly_name: :unset, config_notification_token: :unset, config_sdk_version: :unset, config_time_step: :unset, config_skew: :unset, config_code_length: :unset, config_alg: :unset) ⇒ FactorInstance
Update the FactorInstance
421 422 423 424 425 426 427 428 429 430 431 432 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 421 def update(auth_payload: :unset, friendly_name: :unset, config_notification_token: :unset, config_sdk_version: :unset, config_time_step: :unset, config_skew: :unset, config_code_length: :unset, config_alg: :unset) context.update( auth_payload: auth_payload, friendly_name: friendly_name, config_notification_token: config_notification_token, config_sdk_version: config_sdk_version, config_time_step: config_time_step, config_skew: config_skew, config_code_length: config_code_length, config_alg: config_alg, ) end |
#url ⇒ String
Returns The URL of this resource.
381 382 383 |
# File 'lib/twilio-ruby/rest/verify/v2/service/entity/factor.rb', line 381 def url @properties['url'] end |