@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.
20 lines (19 loc) • 363 B
TypeScript
import { Response } from './response-model';
/**
* Class AddCardFormResponse
*/
export declare class AddCardFormResponse extends Response {
/**
* Data response.
*/
data?: AddCardFormData;
}
/**
* Class AddCardFormData
*/
export declare class AddCardFormData {
/**
* URL to hosted payment gateway.
*/
redirectUrl: string;
}