UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

15 lines 443 B
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