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.

34 lines (33 loc) 591 B
/** * Class Customer * * The customer class defines the customer details object. * * @see https://paytrail.github.io/api-documentation/#/?id=customer */ export declare class Customer { /** * The customer email. */ email: string; /** * The customer first name. */ firstName?: string; /** * The customer last name. */ lastName?: string; /** * The customer phone. */ phone?: string; /** * The customer VAT id. */ vatId?: string; /** * The Company name. */ companyName?: string; }