pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 437 B
TypeScript
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;
}