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.

27 lines (26 loc) 475 B
/** * This class defines address details for a payment request. * @see {@link https://paytrail.github.io/api-documentation/#/?id=address} */ export declare class Address { /** * The street address. */ streetAddress: string; /** * The postal code. */ postalCode: string; /** * The city. */ city: string; /** * The county. */ county?: string; /** * The country. */ country: string; }