signicat-client-ts
Version:
Community TypeScript client for Signicat Authentication REST API with automatic token management
15 lines (14 loc) • 345 B
TypeScript
import type { PaymentItem } from "./PaymentItem";
/**
* Payment Prefill Data information.
*/
export type PaymentPrefillData = {
/**
* Gets or sets iD or reference to the payment to prefill.
*/
reference?: string | null;
/**
* Gets or sets array of Payment Items.
*/
payments?: Array<PaymentItem> | null;
};