UNPKG

wallee

Version:
37 lines (36 loc) 1.18 kB
import { CardAuthenticationResponse } from "./CardAuthenticationResponse"; import { CardAuthenticationVersion } from "./CardAuthenticationVersion"; declare class CardholderAuthentication { /** * The authentication identifier as assigned by authentication system (e.g. XID or DSTransactionID). */ 'authenticationIdentifier'?: string; /** * */ 'authenticationResponse'?: CardAuthenticationResponse; /** * The cardholder authentication value. Also known as Cardholder Authentication Verification Value (CAVV). */ 'authenticationValue'?: string; /** * The Electronic Commerce Indicator (ECI) value. The ECI is returned by authentication system and indicates the outcome/status of authentication. */ 'electronicCommerceIndicator'?: string; /** * */ 'version'?: CardAuthenticationVersion; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { CardholderAuthentication };