Class: Twilio::REST::Authy::V1::ServiceContext::EntityContext::FactorContext::ChallengeInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Authy::V1::ServiceContext::EntityContext::FactorContext::ChallengeInstance
- Defined in:
- lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb
Overview
PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].
Instance Method Summary collapse
-
#account_sid ⇒ String
Account Sid.
-
#context ⇒ ChallengeContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this Challenge was created.
-
#date_responded ⇒ Time
The date this Challenge was responded.
-
#date_updated ⇒ Time
The date this Challenge was updated.
-
#delete ⇒ Boolean
Deletes the ChallengeInstance.
-
#details ⇒ String
Public details provided to contextualize the Challenge.
-
#entity_sid ⇒ String
Entity Sid.
-
#expiration_date ⇒ Time
The date this Challenge is expired.
-
#factor_sid ⇒ String
Factor Sid.
-
#factor_strength ⇒ challenge.FactorStrengths
The Factor Strength of this Challenge.
-
#factor_type ⇒ challenge.FactorTypes
The Factor Type of this Challenge.
-
#fetch ⇒ ChallengeInstance
Fetch a ChallengeInstance.
-
#hidden_details ⇒ String
Hidden details provided to contextualize the Challenge.
-
#identity ⇒ String
Unique identity of the Entity.
-
#initialize(version, payload, service_sid: nil, identity: nil, factor_sid: nil, sid: nil) ⇒ ChallengeInstance
constructor
Initialize the ChallengeInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#responded_reason ⇒ challenge.ChallengeReasons
The Reason of this Challenge ‘status`.
-
#service_sid ⇒ String
Service Sid.
-
#sid ⇒ String
A string that uniquely identifies this Challenge.
-
#status ⇒ challenge.ChallengeStatuses
The Status of this Challenge.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(auth_payload: :unset) ⇒ ChallengeInstance
Update the ChallengeInstance.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, service_sid: nil, identity: nil, factor_sid: nil, sid: nil) ⇒ ChallengeInstance
Initialize the ChallengeInstance
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 216 def initialize(version, payload, service_sid: nil, identity: nil, factor_sid: 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'], 'factor_sid' => payload['factor_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'date_responded' => Twilio.deserialize_iso8601_datetime(payload['date_responded']), 'expiration_date' => Twilio.deserialize_iso8601_datetime(payload['expiration_date']), 'status' => payload['status'], 'responded_reason' => payload['responded_reason'], 'details' => payload['details'], 'hidden_details' => payload['hidden_details'], 'factor_type' => payload['factor_type'], 'factor_strength' => payload['factor_strength'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid, 'identity' => identity, 'factor_sid' => factor_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns Account Sid.
275 276 277 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 275 def account_sid @properties['account_sid'] end |
#context ⇒ ChallengeContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
254 255 256 257 258 259 260 261 262 263 264 265 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 254 def context unless @instance_context @instance_context = ChallengeContext.new( @version, @params['service_sid'], @params['identity'], @params['factor_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date this Challenge was created.
305 306 307 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 305 def date_created @properties['date_created'] end |
#date_responded ⇒ Time
Returns The date this Challenge was responded.
317 318 319 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 317 def date_responded @properties['date_responded'] end |
#date_updated ⇒ Time
Returns The date this Challenge was updated.
311 312 313 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 311 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the ChallengeInstance
372 373 374 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 372 def delete context.delete end |
#details ⇒ String
Returns Public details provided to contextualize the Challenge.
341 342 343 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 341 def details @properties['details'] end |
#entity_sid ⇒ String
Returns Entity Sid.
287 288 289 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 287 def entity_sid @properties['entity_sid'] end |
#expiration_date ⇒ Time
Returns The date this Challenge is expired.
323 324 325 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 323 def expiration_date @properties['expiration_date'] end |
#factor_sid ⇒ String
Returns Factor Sid.
299 300 301 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 299 def factor_sid @properties['factor_sid'] end |
#factor_strength ⇒ challenge.FactorStrengths
Returns The Factor Strength of this Challenge.
359 360 361 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 359 def factor_strength @properties['factor_strength'] end |
#factor_type ⇒ challenge.FactorTypes
Returns The Factor Type of this Challenge.
353 354 355 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 353 def factor_type @properties['factor_type'] end |
#fetch ⇒ ChallengeInstance
Fetch a ChallengeInstance
379 380 381 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 379 def fetch context.fetch end |
#hidden_details ⇒ String
Returns Hidden details provided to contextualize the Challenge.
347 348 349 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 347 def hidden_details @properties['hidden_details'] end |
#identity ⇒ String
Returns Unique identity of the Entity.
293 294 295 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 293 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
401 402 403 404 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 401 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Authy.V1.ChallengeInstance #{values}>" end |
#responded_reason ⇒ challenge.ChallengeReasons
Returns The Reason of this Challenge ‘status`.
335 336 337 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 335 def responded_reason @properties['responded_reason'] end |
#service_sid ⇒ String
Returns Service Sid.
281 282 283 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 281 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A string that uniquely identifies this Challenge.
269 270 271 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 269 def sid @properties['sid'] end |
#status ⇒ challenge.ChallengeStatuses
Returns The Status of this Challenge.
329 330 331 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 329 def status @properties['status'] end |
#to_s ⇒ Object
Provide a user friendly representation
394 395 396 397 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 394 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Authy.V1.ChallengeInstance #{values}>" end |
#update(auth_payload: :unset) ⇒ ChallengeInstance
Update the ChallengeInstance
388 389 390 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 388 def update(auth_payload: :unset) context.update(auth_payload: auth_payload, ) end |
#url ⇒ String
Returns The URL of this resource.
365 366 367 |
# File 'lib/twilio-ruby/rest/authy/v1/service/entity/factor/challenge.rb', line 365 def url @properties['url'] end |