UNPKG

@sumup/sdk

Version:

The official TypeScript SDK for the SumUp API

20 lines 557 B
/** * Mandate Payload * * Mandate details used when a checkout should create a reusable card token for future recurring or merchant-initiated payments. */ export type MandatePayload = { /** * Type of mandate to create for the saved payment instrument. */ type: "recurrent"; /** * Browser or client user agent observed when consent was collected. */ user_agent: string; /** * IP address of the payer when the mandate was accepted. */ user_ip?: string; }; //# sourceMappingURL=mandate-payload.d.ts.map