UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

22 lines (21 loc) 1.26 kB
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { AccountSchemeModelEnum } from './accountSchemeModelEnum'; /** Unambiguous identification of the account of the creditor, in the case of a debit transaction. */ export interface CreditorAccount { schemeName: AccountSchemeModelEnum; /** Identification assigned by an institution to identify an account. This identification is known by the account owner. */ identification: string; /** * Name of the account, as assigned by the account servicing institution, in agreement with the account owner in order to provide an additional means of identification of the account. * Usage: The account name is different from the account owner name. The account name is used in certain user communities to provide a means of identifying the account, in addition to the account owner's identity and the account number. */ name?: string; /** This is secondary identification of the account, as assigned by the account servicing institution. */ secondaryIdentification?: string; } export declare const creditorAccountSchema: Schema<CreditorAccount>;