@spot-flow/vue-spotflow-checkout
Version:
This **Spotflow Vue.js library** wraps around the [inline library](https://github.com/Spotflow-One/spotflow-checkout-inline), which enables users to make payments seamlessly. It integrates smoothly into your Vue.js application, providing a streamlined ch
16 lines (15 loc) • 362 B
TypeScript
export type SpotflowPaymentOptions = {
merchantKey: string;
encryptionKey: string;
email: string;
currency: string;
phoneNumber?: string;
planId?: string;
amount?: number;
reference?: string;
name?: string;
callBackUrl?: string;
metadata?: Record<string, any>;
localCurrency?: string;
countryCode?: string;
};