Class: CybridApiBank::BankFeatureBankModel

Inherits:
Object
  • Object
show all
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
ATTESTATION_IDENTITY_RECORDS_V2 =
"attestation_identity_records_v2".freeze
ATTESTATION_IDENTITY_RECORDS_V3 =
"attestation_identity_records_v3".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
BUSINESS_CUSTOMER_RAW_ROUTING_DETAILS =
"business_customer_raw_routing_details".freeze
INDIVIDUAL_CUSTOMER_RAW_ROUTING_DETAILS =
"individual_customer_raw_routing_details".freeze
DESTINATION_PARTICIPANT_CORRECTIONS =
"destination_participant_corrections".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.all_varsObject



30
31
32
# File 'lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb', line 30

def self.all_vars
  @all_vars ||= [KYC_IDENTITY_VERIFICATIONS, ATTESTATION_IDENTITY_RECORDS, ATTESTATION_IDENTITY_RECORDS_V2, ATTESTATION_IDENTITY_RECORDS_V3, RAW_ROUTING_DETAILS, INDIVIDUAL_CUSTOMERS, BUSINESS_CUSTOMERS, COUNTERPARTY_EXTERNAL_ACCOUNTS, BUSINESS_CUSTOMER_RAW_ROUTING_DETAILS, INDIVIDUAL_CUSTOMER_RAW_ROUTING_DETAILS, DESTINATION_PARTICIPANT_CORRECTIONS].freeze
end

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



37
38
39
# File 'lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb', line 37

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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



44
45
46
47
# File 'lib/cybrid_api_bank_ruby/models/bank_feature_bank_model.rb', line 44

def build_from_hash(value)
  return value if BankFeatureBankModel.all_vars.include?(value)
  raise "Invalid ENUM value #{value} for class #BankFeatureBankModel"
end