UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

11 lines (10 loc) 437 B
import type { ActionType } from './ActionType.js'; import type { RedirectData } from './RedirectData.js'; /** * @description Object that contains the action, including the needed data, that you should perform next, like showing * instructions, showing the transaction results or redirect to a third party to complete the payment */ export interface MerchantAction { actionType?: ActionType; redirectData?: RedirectData; }