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.

17 lines (16 loc) 375 B
import { CreateRefundResponse } from './create-refund.model'; import { Response } from './response-model'; /** * Class EmailRefundResponse */ export declare class EmailRefundResponse extends Response { /** * Data response. */ data?: EmailRefundData; } /** * Class EmailRefundData */ export declare class EmailRefundData extends CreateRefundResponse { }