/** * 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. */ /** * Settings for using external extensions to adjust calculations. */ export interface ExtensionSettingsUniversal { [key: string]: any | any; /** * Use a third-party calculation adjuster. */ enable_extension?: boolean; /** * The address of an external service implementing the Universal Extension API. */ extension_url?: string | null; /** * The maximum time to wait for a response from the external service implementing the Universal Extension API (for each request). */ request_timeout?: string; /** * The number of attempts to request an external service implementing the Universal Extension API. */ retry_attempts?: number; /** * The time between request attempts to an external service implementing the Universal Extension API. */ retry_interval?: string; }