Inttegro SDK for React Native - v0.2.0
    Preparing search index...

    Interface PaymentSheetEvent

    A typed lifecycle event for application UI, analytics, and coordination.

    paymentAttemptFailed and checkoutLoadFailed are recoverable: the native sheet remains responsible for displaying the failure and offering a retry. Terminal application behavior belongs in the PaymentSheetResult returned by presentPaymentSheet.

    interface PaymentSheetEvent {
        errorType?: string;
        flowId: string;
        sequence: number;
        timestamp: string;
        type: PaymentSheetEventType;
    }
    Index
    errorType?: string

    Bounded failure category when the transition represents a failure.

    flowId: string

    Random identifier shared by events from one sheet presentation.

    sequence: number

    Monotonically increasing event order within the flow.

    timestamp: string

    ISO 8601 timestamp generated by the native SDK.

    Typed lifecycle transition.