module Quickbooks::Model::Definition::ClassMethods

Constants

TRANSACTION_ENTITIES

developer.intuit.com/docs/0025_quickbooksapi/0050_data_services

Public Instance Methods

is_name_list_entity?() click to toggle source
# File lib/quickbooks/model/definition.rb, line 31
def is_name_list_entity?
  !self.is_transaction_entity?
end
is_transaction_entity?() click to toggle source
# File lib/quickbooks/model/definition.rb, line 27
def is_transaction_entity?
  TRANSACTION_ENTITIES.include?(self.name.demodulize)
end