Class: XeroRuby::Files::ObjectType
- Inherits:
-
Object
- Object
- XeroRuby::Files::ObjectType
- Defined in:
- lib/xero-ruby/models/files/object_type.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
77 78 79 |
# File 'lib/xero-ruby/models/files/object_type.rb', line 77 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
84 85 86 87 88 |
# File 'lib/xero-ruby/models/files/object_type.rb', line 84 def build_from_hash(value) constantValues = ObjectType.constants.select { |c| ObjectType::const_get(c) == value } raise "Invalid ENUM value #{value} for class #ObjectType" if constantValues.empty? value end |