Class: XeroRuby::Accounting::TimeZone
- Inherits:
-
Object
- Object
- XeroRuby::Accounting::TimeZone
- Defined in:
- lib/xero-ruby/models/accounting/time_zone.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
130 131 132 |
# File 'lib/xero-ruby/models/accounting/time_zone.rb', line 130 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
137 138 139 140 141 |
# File 'lib/xero-ruby/models/accounting/time_zone.rb', line 137 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 |