/* 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. */ /** * PodIP represents a single IP address allocated to the pod. * @export * @interface IoK8sApiCoreV1PodIP */ export interface IoK8sApiCoreV1PodIP { /** * IP is the IP address assigned to the pod * @type {string} * @memberof IoK8sApiCoreV1PodIP */ ip: string; } export function IoK8sApiCoreV1PodIPFromJSON(json: any): IoK8sApiCoreV1PodIP { return IoK8sApiCoreV1PodIPFromJSONTyped(json, false); } export function IoK8sApiCoreV1PodIPFromJSONTyped( json: any, _ignoreDiscriminator: boolean, ): IoK8sApiCoreV1PodIP { if (json === undefined || json === null) { return json; } return { ip: json['ip'], }; } export function IoK8sApiCoreV1PodIPToJSON(value?: IoK8sApiCoreV1PodIP | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { ip: value.ip, }; }