wallee
Version:
TypeScript/JavaScript client for wallee
21 lines (20 loc) • 756 B
TypeScript
import { CardholderAuthentication } from "./CardholderAuthentication";
import { TokenizedCardData } from "./TokenizedCardData";
declare class AuthenticatedCardData extends TokenizedCardData {
/**
* The cardholder authentication information. The authentication is optional and can be provided if the cardholder has been already authenticated (e.g. in 3-D Secure system).
*/
'cardholderAuthentication'?: CardholderAuthentication;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { AuthenticatedCardData };