2020-03-04 09:05:54 -08:00
|
|
|
export interface IPayment {
|
|
|
|
invoice_id?: number;
|
|
|
|
amount?: number;
|
|
|
|
payment_type_id?: number;
|
|
|
|
transaction_reference?: string;
|
|
|
|
private_notes?: string;
|
2022-10-21 09:45:54 -07:00
|
|
|
client_id?: string;
|
2020-03-04 09:05:54 -08:00
|
|
|
}
|