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

24 lines (23 loc) 680 B
import type { Payee } from './Payee.js'; /** * @description Object containing information on payment instructions details (e.g. on the invoice payments). */ export interface PaymentInstructions { /** * @description Payee details. */ payee: Payee; /** * @description Due date of the payment in the format: YYYYMMDD. * @maxLength 8 */ dueDate: string; /** * @description External payment reference number as part of payment instructions for the consumer. */ referenceNumber: string; /** * @description Status, usually describing the status of the invoice if paid, overdue, open... */ status?: string; }