UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

38 lines 1.09 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. */ export function V1beta1DataVolumeCheckpointFromJSON(json) { return V1beta1DataVolumeCheckpointFromJSONTyped(json, false); } export function V1beta1DataVolumeCheckpointFromJSONTyped(json, _ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { current: json['current'], previous: json['previous'], }; } export function V1beta1DataVolumeCheckpointToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { current: value.current, previous: value.previous, }; } //# sourceMappingURL=V1beta1DataVolumeCheckpoint.js.map