UNPKG

wallee

Version:
33 lines (32 loc) 780 B
import { CardCryptogram } from "./CardCryptogram"; import { RecurringIndicator } from "./RecurringIndicator"; declare class TokenizedCardData { /** * The additional authentication value used to secure the tokenized card transactions. */ 'cryptogram'?: CardCryptogram; /** * */ 'initialRecurringTransaction'?: boolean; /** * */ 'recurringIndicator'?: RecurringIndicator; /** * */ 'tokenRequestorId'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { TokenizedCardData };