Class: XeroRuby::Files::ObjectType

Inherits:
Object
  • Object
show all
Defined in:
lib/xero-ruby/models/files/object_type.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



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

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



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