UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

14 lines 304 B
import type { CardType } from "./card-type"; /** * Card Response * * Details of the payment card. */ export type CardResponse = { /** * Last 4 digits of the payment card number. */ readonly last_4_digits?: string; type?: CardType; }; //# sourceMappingURL=card-response.d.cts.map