@simonbackx/paynl-node
Version:
Simple PayNL SDK for Node.js that uses promises and no singletons
19 lines (18 loc) • 437 B
TypeScript
export declare class StartResult {
/**
* The id of the transaction
*/
transactionId: string;
/**
* The url to redirect the user to to complete the payment
*/
paymentURL: string;
popupAllowed: boolean;
paymentReference: string;
/**
* Hash to fetch the status or receipt from the terminal
*/
terminalHash?: string;
terminalStatusUrl?: string;
constructor(data: any);
}