class Quickeebooks::Windows::Model::Customer
Constants
- DEFAULT_TYPE_OF
- REST_RESOURCE
- XML_COLLECTION_NODE
- XML_NODE
Public Instance Methods
active?()
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 81 def active? active == 'true' end
email_address=(email_address)
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 104 def email_address=(email_address) self.email = Quickeebooks::Windows::Model::Email.new(email_address) end
email_address_is_valid()
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 121 def email_address_is_valid if email address = email.address unless address.index('@') && address.index('.') errors.add(:email, "Email address must contain @ and . (dot)") end end end
name_cannot_contain_invalid_characters()
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 115 def name_cannot_contain_invalid_characters if name.to_s.index(':') errors.add(:name, "Name cannot contain a colon (:)") end end
require_an_address()
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 130 def require_an_address if addresses.nil? || (addresses.is_a?(Array) && addresses.empty?) errors.add(:addresses, "Must provide at least one address for this Customer.") end end
to_xml_ns(options = {})
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 100 def to_xml_ns(options = {}) to_xml end
valid_for_create?()
click to toggle source
# File lib/quickeebooks/windows/model/customer.rb, line 92 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/customer.rb, line 110 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/customer.rb, line 85 def valid_for_update? if sync_token.nil? errors.add(:sync_token, "Missing required attribute SyncToken for update") end errors.empty? end