@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.
28 lines (27 loc) • 520 B
TypeScript
import { Response } from './response-model';
/**
* Class CreateRefundResponse
*/
export declare class CreateRefundResponse extends Response {
/**
* Data response.
*/
data?: CreateRefundData;
}
/**
* Class CreateRefundData
*/
export declare class CreateRefundData {
/**
* The payment transaction id.
*/
transactionId: string;
/**
* The provider id.
*/
provider: string;
/**
* The refund status, "ok" for successful refunds.
*/
status: string;
}