/**
 * VRt.Studio [ST]
 *
 * 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.
 */
/**
 * Calculation settings.
 */
export interface CalculationSettingsStudio {
    [key: string]: any | any;
    /**
     * Max calculation time. The countdown starts from the time when data is uploaded to the server and calculation starts.
     */
    max_calculation_time?: string;
    /**
     * Max calculation time. The countdown starts from the time when data is uploaded to the server.
     */
    max_waiting_time?: string;
    /**
     * Calculation result lifetime. The countdown starts from the time when the calculation is completed.
     */
    result_ttl?: string;
    /**
     * Timezone.
     */
    result_timezone?: number;
    /**
     * Treat warnings as errors and do not run calculations if at least one entity contains invalid data.
     */
    treat_warnings_as_errors?: boolean;
    /**
     * Specifies the calculation accuracy in the decimal point sequence number. It equals 3 by default, so the accuracy is 0.001.
     */
    precision?: number;
}
