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.

30 lines (29 loc) 535 B
/** * Class NetworkToken */ export declare class NetworkToken { /** * Type of the card. */ type: string; /** * Last four digits of the card. */ partial_pan: string; /** * Card expiration year. */ expire_year: string; /** * Card expiration month. */ expire_month: string; /** * Card illustration. */ image_url?: string; /** * Reference to the card. Only present for type 'Visa' cards. */ payment_account_reference?: string; }