import { StatusEnum } from './account/StatusEnum';
/** Local SEO accounts */
export interface Account {
    /** Date of creation of the account */
    creationDate: string;
    /** Email address associated to the account */
    email: string;
    /** Account id */
    id: number;
    /** Date of the last account's update */
    lastUpdate: string;
    /** Current status of the account */
    status: StatusEnum;
    /** Running task associated to the account */
    taskId?: number;
}
//# sourceMappingURL=Account.d.ts.map