Class: CybridApiBank::TradeFailureCodeBankModel

Inherits:
Object
  • Object
show all
Defined in:
lib/cybrid_api_bank_ruby/models/trade_failure_code_bank_model.rb

Constant Summary collapse

NON_SUFFICIENT_FUNDS =
"non_sufficient_funds".freeze
UNSUPPORTED =
"unsupported".freeze
LIMIT_EXCEEDED =
"limit_exceeded".freeze
EXPIRED_QUOTE =
"expired_quote".freeze
MARKET_VOLATILITY =
"market_volatility".freeze
NOT_FILLED =
"not_filled".freeze
DAILY_LIMIT_EXCEEDED =
"daily_limit_exceeded".freeze
WEEKLY_LIMIT_EXCEEDED =
"weekly_limit_exceeded".freeze
MONTHLY_LIMIT_EXCEEDED =
"monthly_limit_exceeded".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • enum value in the form of the string

Returns:

  • The enum value



31
32
33
# File 'lib/cybrid_api_bank_ruby/models/trade_failure_code_bank_model.rb', line 31

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:

  • enum value in the form of the string

Returns:

  • The enum value



38
39
40
41
42
# File 'lib/cybrid_api_bank_ruby/models/trade_failure_code_bank_model.rb', line 38

def build_from_hash(value)
  constantValues = TradeFailureCodeBankModel.constants.select { |c| TradeFailureCodeBankModel::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #TradeFailureCodeBankModel" if constantValues.empty?
  value
end