@desipayments/paymentsintegrationsfinixd135-19-06-2026
v0.0.1
Published
Finix PAX D135 Integration
Readme
paymentsintegrationsfinixd135-19-06-2026
Finix PAX D135 Integration
Install
To use npm
npm install paymentsintegrationsfinixd135-19-06-2026To use yarn
yarn add paymentsintegrationsfinixd135-19-06-2026Sync native files
npx cap syncAPI
connect(...)
connect(options: ConnectOptions) => Promise<{ success: boolean; message: string; }>| Param | Type |
| ------------- | --------------------------------------------------------- |
| options | ConnectOptions |
Returns: Promise<{ success: boolean; message: string; }>
startTransaction(...)
startTransaction(options: PaymentOptions) => Promise<{ success: boolean; message: string; receipt?: any; }>| Param | Type |
| ------------- | --------------------------------------------------------- |
| options | PaymentOptions |
Returns: Promise<{ success: boolean; message: string; receipt?: any; }>
refundTransaction(...)
refundTransaction(options: RefundOptions) => Promise<{ success: boolean; message: string; }>| Param | Type |
| ------------- | ------------------------------------------------------- |
| options | RefundOptions |
Returns: Promise<{ success: boolean; message: string; }>
Interfaces
ConnectOptions
| Prop | Type |
| ------------------- | ------------------- |
| macAddress | string |
| merchantId | string |
| deviceId | string |
| userId | string |
| password | string |
| environment | string |
| transactionId | string |
| amount | number |
PaymentOptions
| Prop | Type |
| ------------ | ------------------- |
| amount | number |
RefundOptions
| Prop | Type |
| ------------------- | ------------------- |
| transactionId | string |
| amount | number |
