Class: XeroRuby::Accounting::TimeZone

Inherits:
Object
  • Object
show all
Defined in:
lib/xero-ruby/models/accounting/time_zone.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



162
163
164
# File 'lib/xero-ruby/models/accounting/time_zone.rb', line 162

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



169
170
171
172
173
# File 'lib/xero-ruby/models/accounting/time_zone.rb', line 169

def build_from_hash(value)
  constantValues = TimeZone.constants.select { |c| TimeZone::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #TimeZone" if constantValues.empty?
  value
end