UNPKG

pcp-server-nodejs-sdk

Version:

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=PAYONE-GmbH_PCP-server-nodeJS-SDK&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [![Coverage](https://sonarcloud.io/api/pr

21 lines (20 loc) 805 B
import type { FundSplit } from './FundSplit.js'; import type { PaymentStatusOutput } from './PaymentStatusOutput.js'; import type { RefundOutput } from './RefundOutput.js'; import type { StatusValue } from './StatusValue.js'; /** * @description This object has the numeric representation of the current Refund status, timestamp of last status change and * performable action on the current Refund resource. In case of a rejected Refund, detailed error information is * listed. */ export interface RefundPaymentResponse { refundOutput?: RefundOutput; status?: StatusValue; statusOutput?: PaymentStatusOutput; fundSplit?: FundSplit; /** * @description Unique payment transaction identifier of the payment gateway. * @example 3066019730_1 */ id?: string; }