Class: XeroRuby::PayrollAu::CountryOfResidence
- Inherits:
-
Object
- Object
- XeroRuby::PayrollAu::CountryOfResidence
- Defined in:
- lib/xero-ruby/models/payroll_au/country_of_residence.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
272 273 274 |
# File 'lib/xero-ruby/models/payroll_au/country_of_residence.rb', line 272 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
279 280 281 282 283 |
# File 'lib/xero-ruby/models/payroll_au/country_of_residence.rb', line 279 def build_from_hash(value) constantValues = CountryOfResidence.constants.select { |c| CountryOfResidence::const_get(c) == value } raise "Invalid ENUM value #{value} for class #CountryOfResidence" if constantValues.empty? value end |