/** * The `type` field value is used as a discriminator, with the following mapping: * `MULTI_FACTOR_AUTHENTICATION_UPDATE`: `MultiFactorAuthenticationUpdate` * `REMEDIATION_UPDATE`: `RemediationUpdate` */ export declare class AccountUpdateRequest { /** * The `risk_id` provided by Expedia\'s Fraud Prevention Service in the `AccountScreenResponse`. */ riskId: string; constructor(accountUpdateRequest: AccountUpdateRequestProperties); } export type AccountUpdateRequestTypeEnum = 'MULTI_FACTOR_AUTHENTICATION_UPDATE' | 'REMEDIATION_UPDATE'; export interface AccountUpdateRequestProperties { riskId: string; }