import { HashMap, Option, u32 } from "./_commons"; export interface RawHttpData { /** * The payload data from the HTTP request * Renamed to payload in metroplex */ rqp?: Option; /** * The HTTP response data * Renamed to response in metroplex */ rsp?: Option; /** * A list of all the request headers * Renamed to request_headers in metroplex */ rqh?: Option>; /** * A list of all the response headers * Renamed to response_headers in metroplex */ rsh?: Option>; /** The sequence number for this http data */ seq: u32; /** * Sequence number of the websocket message, this is unique across all part types * Renamed to message_sequence_num in metroplex */ seq_num: u32; }