pcp-server-nodejs-sdk
Version:
[](https://sonarcloud.io/summary/new_code?id=PAYONE-GmbH_PCP-server-nodeJS-SDK) [ • 576 B
TypeScript
import type { PayoutOutput } from './PayoutOutput.js';
import type { StatusCategoryValue } from './StatusCategoryValue.js';
import type { StatusValue } from './StatusValue.js';
/**
* @description Object that holds the payment related properties for the refund of a Payment Information.
*/
export interface PayoutResponse {
payoutOutput?: PayoutOutput;
status?: StatusValue;
statusCategory?: StatusCategoryValue;
/**
* @description Unique payment transaction identifier of the payment gateway.
* @example PP1AA7KKLSFB9MBG
*/
id?: string;
}