UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 457 B
import { StateEnum } from './mail/StateEnum'; /** Hosting automated emails */ export interface Email { /** Bounce */ bounce: number; /** Email used to receive errors */ email?: string; /** Max email to sent per day */ maxPerDay: number; /** Email sent since hosting creation */ sent: number; /** Email sent today */ sentToday: number; /** Email state */ state: StateEnum; } //# sourceMappingURL=Email.d.ts.map