@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.
24 lines (23 loc) • 438 B
TypeScript
import { Response } from './response-model';
/**
* Class MitPaymentResponse
*/
export declare class MitPaymentResponse extends Response {
/**
* Data response.
*/
data?: MitPaymentData;
}
/**
* Class MitPaymentData
*/
export declare class MitPaymentData {
/**
* Assigned transaction ID for the payment
*/
transactionId: string;
/**
* 3DS redirect URL
*/
threeDSecureUrl: string;
}