/**
 * VRt.Account [AC]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { ServiceAccount } from './service';
/**
 * Data for request tracing.
 */
export interface TracedataAccount {
    [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: ServiceAccount;
    /**
     * 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;
}
