UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

33 lines (29 loc) 1.54 kB
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { object, optional, Schema, string } from '../schema'; import { AccountSchemeModelEnum, accountSchemeModelEnumSchema, } 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 const creditorAccountSchema: Schema<CreditorAccount> = object({ schemeName: ['SchemeName', accountSchemeModelEnumSchema], identification: ['Identification', string()], name: ['Name', optional(string())], secondaryIdentification: ['SecondaryIdentification', optional(string())], });