UNPKG

ts-midtrans-client

Version:

This library is an UNOFFICIAL TypeScript version of the Midtrans Client - Node.js.

6 lines (5 loc) 276 B
export interface PaymentAmount { paid_at: string; // Date and time when the payment was made. String Required amount: string; // Amount paid. String Required } export type PaymentAmounts = PaymentAmount[]; // Array of PaymentAmount objects. JSON Array Required