UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

37 lines 1.15 kB
import { UnitAndValueDouble } from '../complexType/UnitAndValueDouble'; import { UnitAndValueLong } from '../complexType/UnitAndValueLong'; import { ObjectStateEnum } from '../email/pro/ObjectStateEnum'; /** XDSL Email Pro */ export interface XdslEmailPro { /** Mailbox usage */ currentUsage: UnitAndValueDouble; /** Account display name */ displayName?: string; /** Email domain */ domain: string; /** Account first name */ firstName?: string; /** Account id */ id: number; /** Account initials */ initial?: string; /** Last logoff */ lastLogoffDate?: string; /** Last logon */ lastLogonDate?: string; /** Account last name */ lastName?: string; /** Account login */ login: string; /** Time of account's password last update */ passwordLastUpdate?: string; /** Default email for this mailbox */ primaryEmailAddress: string; /** Account maximum size */ quota: UnitAndValueLong; /** Account state */ state: ObjectStateEnum; /** Pending tasks for this account */ taskPendingId?: number; } //# sourceMappingURL=XdslEmailPro.d.ts.map