UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

15 lines (14 loc) 495 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { CreditorReference } from './creditorReference'; export interface TransactionReference { creditorName: string; creditorReference?: CreditorReference; debtorName?: string; debtorReference?: CreditorReference; } export declare const transactionReferenceSchema: Schema<TransactionReference>;