Type Alias CanAddCardToWalletResult

CanAddCardToWalletResult:
    | {
        canAddCard: boolean;
        details?: {
            token?: GooglePayCardToken;
            status?: CanAddCardToWalletStatus;
        };
        error?: undefined;
    }
    | {
        canAddCard?: undefined;
        details?: undefined;
        error: StripeError<GooglePayError>;
    }
MMNEPVFCICPMFPCPTTAAATR