import { AccountTakeoverCustomerAccount } from './AccountTakeoverCustomerAccount'; import { AccountTakeoverDeviceDetails } from './AccountTakeoverDeviceDetails'; import { AccountTakeoverSiteInfo } from './AccountTakeoverSiteInfo'; import { AccountTakeoverTransactionDetails } from './AccountTakeoverTransactionDetails'; /** * Information for an account transaction. */ export declare class AccountTransaction { siteInfo: AccountTakeoverSiteInfo; deviceDetails: AccountTakeoverDeviceDetails; customerAccount: AccountTakeoverCustomerAccount; transactionDetails: AccountTakeoverTransactionDetails; constructor(accountTransaction: AccountTransactionProperties); } export interface AccountTransactionProperties { siteInfo: AccountTakeoverSiteInfo; deviceDetails: AccountTakeoverDeviceDetails; customerAccount: AccountTakeoverCustomerAccount; transactionDetails: AccountTakeoverTransactionDetails; }