UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 581 B
import { TaskStatusEnum } from './TaskStatusEnum'; /** Traffic extracts (SIP) of your line */ export interface TrafficExtract { /** The start date of the traffic extract */ dateEnd: string; /** The start date of the traffic extract */ dateStart: string; /** The PCAP file size of the traffic extract */ fileSize: number; /** The PCAP URL of the traffic extract */ fileUrl: string; /** The id of the traffic extract */ id: number; /** The status of the extract */ status: TaskStatusEnum; } //# sourceMappingURL=TrafficExtract.d.ts.map