pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
19 lines (18 loc) • 1.17 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 { AccountSchemeModelEnum } from './accountSchemeModelEnum';
/** Provides the details to identify an account. */
export interface Account {
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 accountSchema: Schema<Account>;