@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
13 lines • 389 B
TypeScript
import { SOTPStatusEnum } from './SOTPStatusEnum';
/** SOTP Two-Factor Authentication */
export interface SOTPAccount {
/** Creation date */
creationDate: string;
/** Last used date */
lastUsedDate?: string;
/** Number of remaining codes */
remaining: number;
/** Status of this account */
status: SOTPStatusEnum;
}
//# sourceMappingURL=SOTPAccount.d.ts.map