pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
21 lines (17 loc) • 711 B
text/typescript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { object, Schema, string } 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 const debtorAgentSchema: Schema<DebtorAgent> = object({
schemeName: ['SchemeName', string()],
identification: ['Identification', string()],
});