ErrorType: {
    type: checkout.CheckoutErrorType;
    message?: string;
    data?: {
        [key: string]: string;
    };
}

Represents an error object with a specific type, optional message, and optional data.

Type declaration

  • type: checkout.CheckoutErrorType

    The type of the error.

  • Optional message?: string

    The error message.

  • Optional data?: {
        [key: string]: string;
    }

    Additional data associated with the error.

    • [key: string]: string

Generated using TypeDoc