Inttegro Web SDKs - v0.1.0
    Preparing search index...

    Interface CheckoutCanceledEvent

    Emitted when the payer deliberately exits or cancels the hosted flow.

    Cancellation is not a payment failure and does not guarantee that no attempt is pending. Preserve the Order reference so your server can reconcile or the payer can return later.

    interface CheckoutCanceledEvent {
        occurredAt: string;
        type: "canceled";
    }

    Hierarchy

    • CheckoutEventBase
      • CheckoutCanceledEvent
    Index
    occurredAt: string

    ISO 8601 timestamp recorded by hosted Checkout when the event occurred. Use it for ordering and telemetry context, not as proof of payment.

    type: "canceled"

    Event discriminator.