Class: XeroRuby::Projects::CurrencyCode
- Inherits:
-
Object
- Object
- XeroRuby::Projects::CurrencyCode
- Defined in:
- lib/xero-ruby/models/projects/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
185 186 187 |
# File 'lib/xero-ruby/models/projects/currency_code.rb', line 185 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
192 193 194 195 196 |
# File 'lib/xero-ruby/models/projects/currency_code.rb', line 192 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 |