UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

39 lines 1.17 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 V1PreconditionsFromJSON(json) { return V1PreconditionsFromJSONTyped(json, false); } export function V1PreconditionsFromJSONTyped(json, _ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { resourceVersion: !exists(json, 'resourceVersion') ? undefined : json['resourceVersion'], uid: !exists(json, 'uid') ? undefined : json['uid'], }; } export function V1PreconditionsToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { resourceVersion: value.resourceVersion, uid: value.uid, }; } //# sourceMappingURL=V1Preconditions.js.map