UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

16 lines 277 B
/** * Receipt Card * * Payment card details displayed on the receipt. */ export type ReceiptCard = { /** * Card last 4 digits. */ last_4_digits?: string; /** * Card Scheme. */ type?: string; }; //# sourceMappingURL=receipt-card.d.cts.map