/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { StorageNodeMini, VolumeMini } from './'; /** * * @export * @interface Queue */ export interface Queue { /** * * @type {string} * @memberof Queue */ readonly id?: string; /** * * @type {string} * @memberof Queue */ readonly group: string; /** * * @type {string} * @memberof Queue */ readonly priority: string; /** * * @type {boolean} * @memberof Queue */ inputBased: boolean; /** * * @type {boolean} * @memberof Queue */ readonly isServiced: boolean | null; /** * * @type {StorageNodeMini} * @memberof Queue */ node?: StorageNodeMini | null; /** * * @type {VolumeMini} * @memberof Queue */ volume?: VolumeMini; } export declare function QueueFromJSON(json: any): Queue; export declare function QueueFromJSONTyped(json: any, ignoreDiscriminator: boolean): Queue; export declare function QueueToJSON(value?: Queue | null): any;