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