Module: NameEntity::PermitAlterations

Instance Method Summary collapse

Instance Method Details

#valid_for_create?Boolean

Returns:

  • (Boolean)


73
74
75
76
# File 'lib/quickbooks/util/name_entity.rb', line 73

def valid_for_create?
  valid?
  errors.empty?
end

#valid_for_deletion?Boolean

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

Returns:

  • (Boolean)


79
80
81
82
# File 'lib/quickbooks/util/name_entity.rb', line 79

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?Boolean

Returns:

  • (Boolean)


66
67
68
69
70
71
# File 'lib/quickbooks/util/name_entity.rb', line 66

def valid_for_update?
  if sync_token.nil?
    errors.add(:sync_token, "Missing required attribute SyncToken for update")
  end
  errors.empty?
end