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.

22 lines (21 loc) 404 B
/** * Class PaymentMethodGroupData */ export declare class PaymentMethodGroupData { /** * ID of the group. */ id: string; /** * Localized name of the group. */ name: string; /** * URL to PNG version of the group icon. */ icon: string; /** * URL to SVG version of the group icon. Using the SVG icon is preferred. */ svg: string; }