@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 402 B
TypeScript
/** Account List */
export interface Account {
/** Name of account */
accountName: string;
/** Account description */
description: string;
/** Name of domain */
domain: string;
/** Email */
email: string;
/** If true your account is blocked */
isBlocked: boolean;
/** Size of your account in bytes */
size: number;
}
//# sourceMappingURL=Account.d.ts.map