Class: XeroRuby::Accounting::AccountType
- Inherits:
-
Object
- Object
- XeroRuby::Accounting::AccountType
- Defined in:
- lib/xero-ruby/models/accounting/account_type.rb
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
43 44 45 |
# File 'lib/xero-ruby/models/accounting/account_type.rb', line 43 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
50 51 52 53 54 |
# File 'lib/xero-ruby/models/accounting/account_type.rb', line 50 def build_from_hash(value) constantValues = AccountType.constants.select { |c| AccountType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #AccountType" if constantValues.empty? value end |