@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
21 lines • 714 B
TypeScript
import { Address } from './Address';
import { CopperInfo } from './CopperInfo';
import { FiberInfo } from './FiberInfo';
import { Portability } from './Portability';
import { EndpointReferenceTypeEnum } from './EndpointReferenceTypeEnum';
/** Endpoint information */
export interface Endpoint {
/** Address */
address?: Address;
/** Copper information */
copperInfo?: CopperInfo;
/** Fiber information */
fiberInfo?: FiberInfo;
/** Portability details of the line number */
portability?: Portability;
/** Reference of the endpoint */
reference: string;
/** Endpoint reference type */
referenceType: EndpointReferenceTypeEnum;
}
//# sourceMappingURL=Endpoint.d.ts.map