Class: XeroRuby::Files::ObjectGroup
- Inherits:
-
Object
- Object
- XeroRuby::Files::ObjectGroup
- 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
-
.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
permalink .build_from_hash(value) ⇒ String
Builds the enum from string
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
permalink #build_from_hash(value) ⇒ String
Builds the enum from string
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 |