Class: XeroRuby::Files::ObjectGroup
- Inherits:
-
Object
- Object
- XeroRuby::Files::ObjectGroup
- Defined in:
- lib/xero-ruby/models/files/object_group.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
33 34 35 |
# File 'lib/xero-ruby/models/files/object_group.rb', line 33 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
40 41 42 43 44 |
# File 'lib/xero-ruby/models/files/object_group.rb', line 40 def build_from_hash(value) constantValues = ObjectGroup.constants.select { |c| ObjectGroup::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ObjectGroup" if constantValues.empty? value end |