Interface EventErrorType

interface EventErrorType {
    code?: "invalid_pan" | "invalid_cvv" | "invalid_exp";
    error: "tokenize_invalid_card" | "tokenize_unauthorized" | "tokenize_unknown_error";
    message?: string;
}

Properties

Properties

code?: "invalid_pan" | "invalid_cvv" | "invalid_exp"
error: "tokenize_invalid_card" | "tokenize_unauthorized" | "tokenize_unknown_error"
message?: string