/** * Payment ThreeDS criteria attributes. */ export declare class PaymentThreeDSCriteria { /** * This is a flag passed that indicates that this transaction could potentially go through 3DS. */ probableFlag?: boolean; /** * Model used to process payment transaction. */ transactionModel?: string; constructor(paymentThreeDSCriteria: PaymentThreeDSCriteriaProperties); } export interface PaymentThreeDSCriteriaProperties { probableFlag?: boolean; transactionModel?: string; }