Class: XeroRuby::Accounting::CurrencyCode
- Inherits:
-
Object
- Object
- XeroRuby::Accounting::CurrencyCode
- Defined in:
- lib/xero-ruby/models/accounting/currency_code.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
189 190 191 |
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 189 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
196 197 198 199 200 |
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 196 def build_from_hash(value) constantValues = CurrencyCode.constants.select { |c| CurrencyCode::const_get(c) == value } raise "Invalid ENUM value #{value} for class #CurrencyCode" if constantValues.empty? value end |