class Quickbooks::Model::Estimate

Constants

REST_RESOURCE

Constants

XML_COLLECTION_NODE
XML_NODE

Private Instance Methods

existence_of_customer_ref() click to toggle source
# File lib/quickbooks/model/estimate.rb, line 68
def existence_of_customer_ref
  if customer_ref.nil? || (customer_ref && customer_ref.value == 0)
    errors.add(:customer_ref, "CustomerRef is required and must be a non-zero value.")
  end
end