@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 440 B
TypeScript
import { U2FStatusEnum } from './U2FStatusEnum';
/** U2F Two-Factor Authentication */
export interface U2FAccount {
/** Creation date */
creationDate: string;
/** Description of this U2F key */
description: string;
/** The Id of the restriction */
id: number;
/** Last used date */
lastUsedDate?: string;
/** Status of this account */
status: U2FStatusEnum;
}
//# sourceMappingURL=U2FAccount.d.ts.map