@stripe/stripe-terminal-react-native
    Preparing search index...

    Interface UnderlyingErrorInformation

    Underlying error information

    • Android: From TerminalException.cause
    • iOS: From NSError.userInfo[NSUnderlyingErrorKey] + localized info
    interface UnderlyingErrorInformation {
        code: string;
        iosDomain?: string;
        iosLocalizedFailureReason?: string;
        iosLocalizedRecoverySuggestion?: string;
        message: string;
    }
    Index

    Properties

    code: string

    Underlying error code (Android: exception class, iOS: NSError.code)

    iosDomain?: string

    iOS error domain (iOS only)

    iosLocalizedFailureReason?: string

    iOS localized failure reason (iOS only)

    iosLocalizedRecoverySuggestion?: string

    iOS localized recovery suggestion (iOS only)

    message: string

    Underlying error message