class Xeroizer::Record::Payment

Public Instance Methods

account_code() click to toggle source
# File lib/xeroizer/models/payment.rb, line 41
def account_code
  account.code if account
end
account_id() click to toggle source
# File lib/xeroizer/models/payment.rb, line 37
def account_id
  account.id if account
end
credit_note_id() click to toggle source
# File lib/xeroizer/models/payment.rb, line 33
def credit_note_id
  credit_note.id if credit_note
end
invoice_id() click to toggle source
# File lib/xeroizer/models/payment.rb, line 29
def invoice_id
  invoice.id if invoice
end