UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

20 lines 1.06 kB
import { SectionLength } from './SectionLength'; import { LineStatusEnum } from './LineStatusEnum'; /** Copper information */ export interface CopperInfo { /** Number of available pairs. This is given only for an eligibility test. */ availablePairs?: number; /** Number of maximun available pairs using desaturation. This is given only for an eligibility test. */ maxAvailablePairs?: number; /** NRA ("Nœud de raccordement abonné" in french) is an identifier of the building where is the Main Distribution Frames for the copper line. This is given only for an eligibility test. */ nra?: string; /** Sections lengths of the copper line. This is given only for an eligibility test. */ sectionsLengths: SectionLength[]; /** Line status */ status: LineStatusEnum; /** Is the line under construction ? This is given only for an eligibility test. */ underConstruction?: boolean; /** Is the number unlisted ? ("sur liste rouge" in french) */ unlistedNumber: boolean; } //# sourceMappingURL=CopperInfo.d.ts.map