/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { High } from './High'; import type { Low } from './Low'; /** * * @export * @interface TaskQueues */ export interface TaskQueues { /** * * @type {High} * @memberof TaskQueues */ high: High; /** * * @type {Low} * @memberof TaskQueues */ low: Low; } /** * Check if a given object implements the TaskQueues interface. */ export declare function instanceOfTaskQueues(value: object): value is TaskQueues; export declare function TaskQueuesFromJSON(json: any): TaskQueues; export declare function TaskQueuesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaskQueues; export declare function TaskQueuesToJSON(value?: TaskQueues | null): any;