Class: Plaid::IdentityVerificationStepStatus
- Inherits:
-
Object
- Object
- Plaid::IdentityVerificationStepStatus
- Defined in:
- lib/plaid/models/identity_verification_step_status.rb
Constant Summary collapse
- SUCCESS =
"success".freeze
- ACTIVE =
"active".freeze
- FAILED =
"failed".freeze
- WAITING_FOR_PREREQUISITE =
"waiting_for_prerequisite".freeze
- NOT_APPLICABLE =
"not_applicable".freeze
- SKIPPED =
"skipped".freeze
- EXPIRED =
"expired".freeze
- CANCELED =
"canceled".freeze
- PENDING_REVIEW =
"pending_review".freeze
- MANUALLY_APPROVED =
"manually_approved".freeze
- MANUALLY_REJECTED =
"manually_rejected".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
33 34 35 |
# File 'lib/plaid/models/identity_verification_step_status.rb', line 33 def self.build_from_hash(value) new.build_from_hash(value) end |
Instance Method Details
#build_from_hash(value) ⇒ String
Builds the enum from string
40 41 42 43 44 45 |
# File 'lib/plaid/models/identity_verification_step_status.rb', line 40 def build_from_hash(value) # We do not validate that the value is one of the enums set in the OpenAPI # file because we want to be able to add to our list of enums without # breaking this client library. value end |