UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

15 lines (14 loc) 606 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; /** Financial institution servicing an account for the debtor. */ export interface DebtorAgent { /** Name of the identification scheme, in a coded form as published in an external list. */ schemeName: string; /** Unique and unambiguous identification of a financial institution or a branch of a financial institution. */ identification: string; } export declare const debtorAgentSchema: Schema<DebtorAgent>;