@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) • 552 B
TypeScript
import { CreatePaymentRequest } from './create-payment.model';
/**
* Class MitPaymentRequest
*
* This class is used to create a MIT payment request object
*
* @see https://paytrail.github.io/api-documentation/#/?id=request4
*/
export declare class MitPaymentRequest extends CreatePaymentRequest {
/**
* Token
*/
token: string;
}
/**
* Class MitPaymentParams
*
* @see https://docs.paytrail.com/#/?id=get-token
*/
export declare class MitPaymentParams {
/**
* The transaction id.
*/
transactionId: string;
}