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

23 lines (22 loc) 659 B
import type { Payee } from './Payee.js'; /** * @description Object containing information on payment instructions details (e.g. on invoice payments). */ export interface PaymentInstructions { /** * @description Payee details. */ payee: Payee; /** * @description Due date of the payment in the format: YYYYMMDD. */ 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 (e.g., paid, overdue, open). */ status?: string; }