class Quickeebooks::Windows::Model::Clazz

Constants

REST_RESOURCE

services.intuit.com/sb/customer/v2/>

XML_COLLECTION_NODE
XML_NODE

Public Instance Methods

active?() click to toggle source
# File lib/quickeebooks/windows/model/clazz.rb, line 34
def active?
  active == 'true'
end
to_xml_ns(options = {}) click to toggle source
# File lib/quickeebooks/windows/model/clazz.rb, line 53
def to_xml_ns(options = {})
  to_xml
end
valid_for_create?() click to toggle source
# File lib/quickeebooks/windows/model/clazz.rb, line 45
def valid_for_create?
  valid?
  if type_of.nil?
    errors.add(:type_of, "Missing required attribute TypeOf for Create")
  end
  errors.empty?
end
valid_for_deletion?() click to toggle source

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

# File lib/quickeebooks/windows/model/clazz.rb, line 58
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/windows/model/clazz.rb, line 38
def valid_for_update?
  if sync_token.nil?
    errors.add(:sync_token, "Missing required attribute SyncToken for update")
  end
  errors.empty?
end