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