/** * 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. */ /** * * @export * @interface VolumeMini */ export interface VolumeMini { /** * * @type {number} * @memberof VolumeMini */ id: number; /** * * @type {string} * @memberof VolumeMini */ path?: string; /** * * @type {string} * @memberof VolumeMini */ displayName?: string; /** * * @type {string} * @memberof VolumeMini */ visualTag?: string | null; /** * * @type {string} * @memberof VolumeMini */ type?: VolumeMiniTypeEnum; /** * * @type {string} * @memberof VolumeMini */ readonly name?: string | null; } /** * @export * @enum {string} */ export declare enum VolumeMiniTypeEnum { Generic = "generic", GenericMount = "generic-mount", Snfs = "snfs", Btrfs = "btrfs", Lizardfs = "lizardfs", Bcachefs = "bcachefs", Onefs = "onefs", Beegfs = "beegfs", Cloud = "cloud" } export declare function VolumeMiniFromJSON(json: any): VolumeMini; export declare function VolumeMiniFromJSONTyped(json: any, ignoreDiscriminator: boolean): VolumeMini; export declare function VolumeMiniToJSON(value?: VolumeMini | null): any;