class Quickeebooks::Online::Model::Account

Constants

REST_RESOURCE
XML_NODE

Public Instance Methods

to_xml_ns(options = {}) click to toggle source
# File lib/quickeebooks/online/model/account.rb, line 31
def to_xml_ns(options = {})
  to_xml_inject_ns('Account', options)
end
valid_for_deletion?() click to toggle source

To delete an account Intuit requires we provide Id and SyncToken fields

# File lib/quickeebooks/online/model/account.rb, line 44
def valid_for_deletion?
  return false if(id.nil? || sync_token.nil?)
  id.to_i > 0 && !sync_token.to_s.empty? && sync_token.to_i >= 0
end
valid_for_update?() click to toggle source
# File lib/quickeebooks/online/model/account.rb, line 35
def valid_for_update?
  if sync_token.nil?
    errors.add(:sync_token, "Missing required attribute SyncToken for update")
  end
  valid?
  errors.empty?
end