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