import { OperatorEnum } from './edge/OperatorEnum';
/** OVHcloud Connect Edge */
export interface Edge {
    /** FTTO access associated to the Edge */
    access?: string;
    /** Access name associated to the Edge */
    accessName: string;
    /** Edge id */
    id: number;
    /** Operator associated to the Edge */
    operator: OperatorEnum;
    /** uCPE associated to the Edge */
    ucpe?: string;
}
//# sourceMappingURL=Edge.d.ts.map