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
187 188 189 |
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 187 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
194 195 196 197 198 |
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 194 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 |