UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

41 lines 1.21 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 V1TypedLocalObjectReferenceFromJSON(json) { return V1TypedLocalObjectReferenceFromJSONTyped(json, false); } export function V1TypedLocalObjectReferenceFromJSONTyped(json, _ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { apiGroup: !exists(json, 'apiGroup') ? undefined : json['apiGroup'], kind: json['kind'], name: json['name'], }; } export function V1TypedLocalObjectReferenceToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { apiGroup: value.apiGroup, kind: value.kind, name: value.name, }; } //# sourceMappingURL=V1TypedLocalObjectReference.js.map