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