Class: XeroRuby::Accounting::CurrencyCode

Inherits:
Object
  • Object
show all
Defined in:
lib/xero-ruby/models/accounting/currency_code.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



190
191
192
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 190

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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



197
198
199
200
201
# File 'lib/xero-ruby/models/accounting/currency_code.rb', line 197

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