@sumup/sdk
    Preparing search index...

    Type Alias CheckoutProcessMixin

    Details of the payment instrument for processing the checkout.

    type CheckoutProcessMixin = {
        card?: Card;
        customer_id?: string;
        installments?: number;
        mandate?: MandatePayload;
        payment_type: "card" | "boleto" | "ideal" | "blik" | "bancontact";
        personal_details?: SumUp.Checkouts.PersonalDetails;
        token?: string;
    }
    Index

    Properties

    card?: Card
    customer_id?: string

    Required when token is provided. Unique ID of the customer.

    installments?: number

    Number of installments for deferred payments. Available only to merchant users in Brazil.

    mandate?: MandatePayload
    payment_type: "card" | "boleto" | "ideal" | "blik" | "bancontact"

    Describes the payment method used to attempt processing

    personal_details?: SumUp.Checkouts.PersonalDetails
    token?: string

    Required when using a tokenized card to process a checkout. Unique token identifying the saved payment card for a customer.