import { Option, u32 } from "./_commons"; export interface PageVisitMetaDataReceived { /** * custom id name provided by the user * Maximum length accepted is 100 * Renamed to custom_id_name in metroplex */ id_name?: Option; /** * custom id value provided by the user * Maximum length accepted is 500 * Renamed to custom_id_value in metroplex */ id_val?: Option; /** * Sequence number of the websocket message, this is unique across video frags, pagevisit parts and meta data parts * Renamed to message_sequence_num in metroplex */ seq_num: u32; }