UNPKG

pnz-payments-sdk

Version:

PNZ Payments Account and Transaction API

21 lines (20 loc) 941 B
/** * Account and Transaction API SpecificationLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; import { AuthorisationTypeEnum } from './authorisationTypeEnum'; import { CardSchemeNameEnum } from './cardSchemeNameEnum'; /** Set of elements to describe the card instrument used in the transaction. */ export interface CardInstrument { /** Name of the card scheme. */ cardSchemeName: CardSchemeNameEnum; /** The card authorisation type. */ authorisationType?: AuthorisationTypeEnum; /** Name of the cardholder using the card instrument. */ name?: string; /** Identification assigned by an institution to identify the card instrument used in the transaction. This identification is known by the account owner, and may be masked. */ identification?: string; } export declare const cardInstrumentSchema: Schema<CardInstrument>;