UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

37 lines 1.06 kB
/* tslint:disable */ /* eslint-disable */ /** * KubeVirt Containerized Data Importer API * Containerized Data Importer for KubeVirt. * * 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. */ import { exists } from '../runtime'; export function V1LocalObjectReferenceFromJSON(json) { return V1LocalObjectReferenceFromJSONTyped(json, false); } export function V1LocalObjectReferenceFromJSONTyped(json, _ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { name: !exists(json, 'name') ? undefined : json['name'], }; } export function V1LocalObjectReferenceToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { name: value.name, }; } //# sourceMappingURL=V1LocalObjectReference.js.map