Type Alias RecordInvoicePaymentDto

RecordInvoicePaymentDto: {
    altId: string;
    altType: "location";
    mode: "cash" | "card" | "cheque" | "bank_transfer" | "other";
    card?: InvoiceCard;
    cheque?: InvoiceCheque;
    notes: string;
    amount?: number;
}

Type declaration

  • altId: string
  • altType: "location"
  • mode: "cash" | "card" | "cheque" | "bank_transfer" | "other"
  • Optionalcard?: InvoiceCard
  • Optionalcheque?: InvoiceCheque
  • notes: string
  • Optionalamount?: number