import { AccountUpdateRequest } from './AccountUpdateRequest'; import { MultiFactorAuthenticationAttempt } from './MultiFactorAuthenticationAttempt'; import { AccountUpdateRequestProperties } from './AccountUpdateRequest'; /** * Information specific to a user\'s response to a Multi-Factor Authentication initiated by the Partner\'s system as a result of a fraud recommendation. */ export declare class MultiFactorAuthenticationUpdate extends AccountUpdateRequest { multiFactorAuthenticationAttempts: Array; readonly type = "MULTI_FACTOR_AUTHENTICATION_UPDATE"; constructor(multiFactorAuthenticationUpdate: MultiFactorAuthenticationUpdateProperties); } export interface MultiFactorAuthenticationUpdateProperties extends AccountUpdateRequestProperties { multiFactorAuthenticationAttempts: Array; }