@sumup/sdk
    Preparing search index...

    Type Alias ReaderCheckoutStatusChange

    ReaderCheckoutStatusChange

    The callback payload containing the status change of the Reader Checkout.

    type ReaderCheckoutStatusChange = {
        event_type: string;
        id: string;
        payload: {
            client_transaction_id: string;
            merchant_code: string;
            status: "successful" | "failed";
            transaction_id?: string;
        };
        timestamp: string;
    }
    Index

    Properties

    event_type: string

    Type of event.

    id: string

    Unique identifier for the event.

    payload: {
        client_transaction_id: string;
        merchant_code: string;
        status: "successful" | "failed";
        transaction_id?: string;
    }

    The event payload.

    Type Declaration

    • client_transaction_id: string

      The unique client transaction id. It is the same returned by the Checkout.

    • merchant_code: string

      The merchant code associated with the transaction.

    • status: "successful" | "failed"

      The current status of the transaction.

    • Optionaltransaction_id?: string

      The transaction id. Deprecated: use client_transaction_id instead.

    timestamp: string

    Timestamp of the event.