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.

20 lines (19 loc) 476 B
import { ConfigurationParameters } from './interfaces/IConfiguration.interface'; export declare class Configuration { /** * The merchant id. * @memberof Configuration */ merchantId?: number; /** * The merchant secret key. * @memberof Configuration */ secretKey?: string; /** * Platform name for the API. * @memberof Configuration */ platformName?: string; constructor(param: ConfigurationParameters); }