UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines 1.42 kB
/* tslint:disable */ /* eslint-disable */ /** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: unversioned * * * 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'; import { IoK8sApiNetworkingV1IngressLoadBalancerStatusFromJSON, IoK8sApiNetworkingV1IngressLoadBalancerStatusToJSON, } from './'; export function IoK8sApiNetworkingV1IngressStatusFromJSON(json) { return IoK8sApiNetworkingV1IngressStatusFromJSONTyped(json, false); } export function IoK8sApiNetworkingV1IngressStatusFromJSONTyped(json, _ignoreDiscriminator) { if (json === undefined || json === null) { return json; } return { loadBalancer: !exists(json, 'loadBalancer') ? undefined : IoK8sApiNetworkingV1IngressLoadBalancerStatusFromJSON(json['loadBalancer']), }; } export function IoK8sApiNetworkingV1IngressStatusToJSON(value) { if (value === undefined) { return undefined; } if (value === null) { return null; } return { loadBalancer: IoK8sApiNetworkingV1IngressLoadBalancerStatusToJSON(value.loadBalancer), }; } //# sourceMappingURL=IoK8sApiNetworkingV1IngressStatus.js.map