pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
24 lines (23 loc) • 1.15 kB
TypeScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema';
import { PostalAddress } from './postalAddress';
import { SchemeNameEnum } from './schemeNameEnum';
/**
* Party that manages the account on behalf of the account owner, that is manages the registration and booking of entries on the account, calculates balances on the account and provides information about the account.
* This is the servicer of the beneficiary account.
*/
export interface CreditorAgent {
/** Name of the identification scheme, in a coded form as published in an external list. */
schemeName?: SchemeNameEnum;
/** Unique and unambiguous identification of the servicing institution. */
identification?: string;
/** Name by which an agent is known and which is usually used to identify that agent. */
name?: string;
/** Information that locates and identifies a specific address, as defined by postal services. */
postalAddress?: PostalAddress;
}
export declare const creditorAgentSchema: Schema<CreditorAgent>;