interface MakePaymentResponse {
    _id: string;
    automaticPayment?: AutomaticPayment;
    dueAmount: number;
    paidAmount: number;
    payments: models.bookings.BookingPayment[];
}

Hierarchy (View Summary)

Properties

_id: string
automaticPayment?: AutomaticPayment
dueAmount: number
paidAmount: number