UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 476 B
import { DslamLineProfile } from './DslamLineProfile'; import { DslamPortStatusEnum } from './DslamPortStatusEnum'; /** Information about the port on the DSLAM */ export interface DslamPort { /** Last time the port lost the synchronization */ lastDesyncDate?: string; /** Last time the port synchronized */ lastSyncDate?: string; /** */ profile?: DslamLineProfile; /** */ status: DslamPortStatusEnum; } //# sourceMappingURL=DslamPort.d.ts.map