/** * VRt.Universal [UV] * * The version of the OpenAPI document: 7.26.3024 * Contact: servicedesk@veeroute.com * * NOTE: This class is auto generated by OpenAPI Generator. * Do not edit the class manually. */ import { ServiceUniversal } from './service'; /** * Data for request tracing. */ export interface TracedataUniversal { [key: string]: any | any; /** * Unique process identifier. One is created per process, the same for different requests for the same process. */ process_code: string; /** * Unique identifier of the request. A new one is created for each request. */ request_code: string; /** * Unique username for login. */ username: string; /** * Unique company key. */ company: string; service: ServiceUniversal; /** * Operation (request) name. */ operation: string; /** * Environment identifier. */ env: string; /** * Pod identifier. */ pod: string; /** * Date and time service method run in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format. */ time: string; }