UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 770 B
import { BuildingTypeEnum } from './BuildingTypeEnum'; /** Fiber information */ export interface FiberInfo { /** Building name */ buildingName?: string; /** Building unique identifier */ buildingReference: string; /** Building type */ buildingType: BuildingTypeEnum; /** Latitude */ latitude?: string; /** Longitude */ longitude?: string; /** NRO ("Nœud de raccordement optique" in french) is an identifier of the building where is the Optical Distribution Frame (ODF) of the fiber */ nro?: string; /** Operator code */ operatorCode: string; /** Operator name */ operatorName: string; /** Reference of the mutualisation point (PM) */ pmReference?: string; } //# sourceMappingURL=FiberInfo.d.ts.map