Class: FdxV660Api::AccountCategory14

Inherits:
Object
  • Object
show all
Defined in:
lib/fdx_v660_api/models/account_category14.rb

Overview

The entity type of this account, in this case LOAN_ACCOUNT

Constant Summary collapse

ACCOUNT_CATEGORY14 =
[
  # TODO: Write general description for LOAN_ACCOUNT
  LOAN_ACCOUNT = 'LOAN_ACCOUNT'.freeze
].freeze

Class Method Summary collapse

Class Method Details

.from_value(value, default_value = LOAN_ACCOUNT) ⇒ Object



20
21
22
23
24
# File 'lib/fdx_v660_api/models/account_category14.rb', line 20

def self.from_value(value, default_value = LOAN_ACCOUNT)
  return default_value if value.nil?

  default_value
end

.validate(value) ⇒ Object



14
15
16
17
18
# File 'lib/fdx_v660_api/models/account_category14.rb', line 14

def self.validate(value)
  return false if value.nil?

  true
end