Class: CybridApiBank::BankFeatureBankModel
- Inherits:
-
Object
- Object
- CybridApiBank::BankFeatureBankModel
- Defined in:
- lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb
Constant Summary collapse
- KYC_IDENTITY_VERIFICATIONS =
"kyc_identity_verifications".freeze
- ATTESTATION_IDENTITY_RECORDS =
"attestation_identity_records".freeze
- RAW_ROUTING_DETAILS =
"raw_routing_details".freeze
- INDIVIDUAL_CUSTOMERS =
"individual_customers".freeze
- BUSINESS_CUSTOMERS =
"business_customers".freeze
- COUNTERPARTY_EXTERNAL_ACCOUNTS =
"counterparty_external_accounts".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
28 29 30 |
# File 'lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb', line 28 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
35 36 37 38 39 |
# File 'lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb', line 35 def build_from_hash(value) constantValues = BankFeatureBankModel.constants.select { |c| BankFeatureBankModel::const_get(c) == value } raise "Invalid ENUM value #{value} for class #BankFeatureBankModel" if constantValues.empty? value end |