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.

22 lines (21 loc) 503 B
import { CreateRefundRequest } from './create-refund.model'; /** * Class EmailRefundRequest * * @see https://paytrail.github.io/api-documentation/#/examples?id=email-refund-request-body */ export declare class EmailRefundRequest extends CreateRefundRequest { /** * Email to which the refund message will be sent. */ email: string; } /** * Class EmailRefundParams */ export declare class EmailRefundParams { /** * The transaction id. */ transactionId: string; }