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

    Interface CheckoutChangeEvent

    Emitted when payer input changes the completion state of the form.

    Treat complete as a presentation hint only. Checkout revalidates the input before starting payment, and your server remains the authority for final Order status.

    interface CheckoutChangeEvent {
        complete: boolean;
        occurredAt: string;
        paymentMethod?: "mobile_money";
        type: "change";
    }

    Hierarchy

    • CheckoutEventBase
      • CheckoutChangeEvent
    Index
    complete: boolean

    Whether the currently visible payment form has enough valid input to submit.

    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.

    paymentMethod?: "mobile_money"

    Selected payment-method family, when Checkout can expose it safely.

    type: "change"

    Event discriminator.