/* tslint:disable */ /* eslint-disable */ /** * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 * @interface V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo */ export interface V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo { /** * * @type {any} * @memberof V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo */ time?: any | null; /** * * @type {any} * @memberof V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo */ version?: any | null; } /** * Check if a given object implements the V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo interface. */ export function instanceOfV1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo( _value: object, ): boolean { const isInstance = true; return isInstance; } export function V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfoFromJSON( json: any, ): V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo { return V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfoFromJSONTyped( json, false, ); } export function V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfoFromJSONTyped( json: any, _ignoreDiscriminator: boolean, ): V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo { if (json === undefined || json === null) { return json; } return { time: !exists(json, 'time') ? undefined : json['time'], version: !exists(json, 'version') ? undefined : json['version'], }; } export function V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfoToJSON( value?: V1beta1NodeNetworkConfigurationEnactmentStatusCapturedStatesValueMetaInfo | null, ): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { time: value.time, version: value.version, }; }