@sumup/sdk
Version:
The official TypeScript SDK for the SumUp API
28 lines • 700 B
TypeScript
import type { EventID } from "./event-id";
import type { EventStatus } from "./event-status";
import type { EventType } from "./event-type";
import type { TransactionID } from "./transaction-id";
/**
* Receipt Event
*
* Transaction event details as rendered on the receipt.
*/
export type ReceiptEvent = {
id?: EventID;
transaction_id?: TransactionID;
type?: EventType;
status?: EventStatus;
/**
* Amount of the event.
*/
amount?: string;
/**
* Date and time of the transaction event.
*/
timestamp?: string;
/**
* Receipt number associated with the event.
*/
receipt_no?: string;
};
//# sourceMappingURL=receipt-event.d.ts.map