UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

14 lines 291 B
import type { PersonalDetails } from "./personal-details"; /** * Customer * * Saved customer details. */ export type Customer = { /** * Unique ID of the customer. */ customer_id: string; personal_details?: PersonalDetails; }; //# sourceMappingURL=customer.d.cts.map