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

    Interface PaymentSheetTelemetryEvent

    Privacy-safe diagnostic event emitted during a sheet presentation.

    interface PaymentSheetTelemetryEvent {
        errorType?: string;
        flowId: string;
        httpStatusCode?: number;
        name: PaymentSheetTelemetryEventName;
        operation?:
            | "checkout.lookup"
            | "checkout.pay"
            | "checkout.request_confirmation"
            | "checkout.confirm_payment";
        requestId?: string;
        sequence: number;
        timestamp: string;
    }
    Index
    errorType?: string

    Bounded failure category without a raw error message.

    flowId: string

    Random identifier shared by events from one sheet presentation.

    httpStatusCode?: number

    HTTP response status when one was received.

    Stable diagnostic wire name.

    operation?:
        | "checkout.lookup"
        | "checkout.pay"
        | "checkout.request_confirmation"
        | "checkout.confirm_payment"

    Checkout network operation associated with this event.

    requestId?: string

    Safe request identifier returned by the Inttegro API.

    sequence: number

    Monotonically increasing event order within the flow.

    timestamp: string

    ISO 8601 timestamp generated by the native SDK.