UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 744 B
import { ReferenceTypeEnum } from './ReferenceTypeEnum'; /** Eligibility recall */ export interface EligibilityRecall { /** Is the recall completed ? */ completed: boolean; /** Completed date */ completedDate?: string; /** Creation date */ creationDate: string; /** customer ID */ customer: string; /** Check for Dedicated Fiber FTTO/FTTE eligibility ? */ dedicatedfiberRequest: boolean; /** ID */ id: number; /** Check for Pro Fiber FTTH eligibility ? */ profiberRequest: boolean; /** Reference */ reference: string; /** Reference type */ referenceType: ReferenceTypeEnum; /** Updated date */ updatedDate: string; } //# sourceMappingURL=EligibilityRecall.d.ts.map