Class: XeroRuby::Files::ObjectGroup

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

Constant Summary collapse

ACCOUNT =
"Account".freeze
BANK_TRANSACTION =
"BankTransaction".freeze
CONTACT =
"Contact".freeze
CREDIT_NOTE =
"CreditNote".freeze
INVOICE =
"Invoice".freeze
ITEM =
"Item".freeze
MANUAL_JOURNAL =
"ManualJournal".freeze
OVERPAYMENT =
"Overpayment".freeze
PAYMENT =
"Payment".freeze
PREPAYMENT =
"Prepayment".freeze
RECEIPT =
"Receipt".freeze

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



32
33
34
# File 'lib/xero-ruby/models/files/object_group.rb', line 32

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



39
40
41
42
43
# File 'lib/xero-ruby/models/files/object_group.rb', line 39

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