@sumup/sdk
    Preparing search index...

    Type Alias CheckoutUpdateRequest

    Checkout Update Request

    Request body for updating an existing checkout. Include only the fields that should be changed.

    type CheckoutUpdateRequest = {
        amount?: number;
        checkout_reference?: string;
        currency?: Currency;
        customer_id?: string;
        description?: string;
        valid_until?: string | null;
    }
    Index
    amount?: number

    Updated amount to be charged to the payer, expressed in major units.

    checkout_reference?: string

    Updated merchant-defined reference for the checkout.

    currency?: Currency
    customer_id?: string

    Updated merchant-scoped customer identifier associated with the checkout.

    description?: string

    Updated short merchant-defined description shown in SumUp tools and reporting.

    valid_until?: string | null

    Updated expiration timestamp. The checkout must be processed before this moment, otherwise it becomes unusable.