UNPKG

@paytrail/paytrail-js-sdk

Version:

The goal for this project is to develop a Javascript SDK for the Paytrail payment service. The aim is to provide JS developers with an easier and more streamlined way to integrate our API into their applications.

18 lines (17 loc) 313 B
/** * Class CallbackUrl * * This class defines callback url details. * * @see https://paytrail.github.io/api-documentation/#/?id=callbackurl */ export declare class CallbackUrl { /** * The success url. */ success: string; /** * The cancellation url. */ cancel: string; }