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
39 40 41 |
# File 'lib/xero-ruby/models/accounting/account_type.rb', line 39 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
46 47 48 49 50 |
# File 'lib/xero-ruby/models/accounting/account_type.rb', line 46 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 |