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.

26 lines (25 loc) 508 B
import { Response } from './response-model'; /** * Class CreateCitPaymentResponse */ export declare class CreateCitPaymentResponse extends Response { /** * Data response. */ data?: CreateCitPaymentData; } /** * Class CreateCitPaymentData * * Represents a response object of CIT payment creation. */ export declare class CreateCitPaymentData { /** * The transaction id. */ transactionId: string; /** * threeDSecureUrl. */ threeDSecureUrl: string; }