import { TOTPStatusEnum } from './TOTPStatusEnum';
/** TOTP Two-Factor Authentication */
export interface TOTPAccount {
    /** Creation date */
    creationDate: string;
    /** Description of this TOTP */
    description: string;
    /** The Id of the restriction */
    id: number;
    /** Last used date */
    lastUsedDate?: string;
    /** Status of this account */
    status: TOTPStatusEnum;
}
//# sourceMappingURL=TOTPAccount.d.ts.map