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
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
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 |