/** * Information specific to the Partner\'s website through which a transaction was made. */ export declare class AccountTakeoverSiteInfo { /** * The locale of the website a user is accessing, which is separate from the user configured browser locale, in ISO 639-2 language code format and in ISO 3166-1 country code format. */ locale?: string; /** * Name of the website from which the event is generated. */ name?: string; /** * The trademark brand name that is displayed to a user on the website. */ brandName: string; /** * The categorized name of the page where a user initiated event is being evaluated. - `LOGIN` - Applicable if the user initiated this account event from a login web page. - `PASSWORD_RESET` - Applicable if the user initiated this account event from a password reset web page. */ placementName?: AccountTakeoverSiteInfoPlacementNameEnum; constructor(accountTakeoverSiteInfo: AccountTakeoverSiteInfoProperties); } export type AccountTakeoverSiteInfoPlacementNameEnum = 'LOGIN' | 'PASSWORD_RESET'; export interface AccountTakeoverSiteInfoProperties { locale?: string; name?: string; brandName: string; placementName?: AccountTakeoverSiteInfoPlacementNameEnum; }