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.

21 lines (20 loc) 501 B
import { CreatePaymentRequest } from './create-payment.model'; /** * Class CreateCitPaymentRequest * * This class is used to create a CIT payment request object for * * @see https://paytrail.github.io/api-documentation/#/?id=request4 */ export declare class CreateCitPaymentRequest extends CreatePaymentRequest { /** * Payment card token. */ token: string; } export declare class CreateCitPaymentParams { /** * The transaction id. */ transactionId: string; }