/* tslint:disable */ /* eslint-disable */ /** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * 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 V1Filesystem */ export interface V1Filesystem { /** * Name is the device name * @type {string} * @memberof V1Filesystem */ name: string; /** * * @type {object} * @memberof V1Filesystem */ virtiofs: object; } export function V1FilesystemFromJSON(json: any): V1Filesystem { return V1FilesystemFromJSONTyped(json, false); } export function V1FilesystemFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1Filesystem { if (json === undefined || json === null) { return json; } return { name: json['name'], virtiofs: json['virtiofs'], }; } export function V1FilesystemToJSON(value?: V1Filesystem | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { name: value.name, virtiofs: value.virtiofs, }; }