UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.12 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * 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 { V1ClockOffset, V1Timer } from './'; /** * ClockPreferences contains various optional defaults for Clock. * @export * @interface V1beta1ClockPreferences */ export interface V1beta1ClockPreferences { /** * * @type {V1ClockOffset} * @memberof V1beta1ClockPreferences */ preferredClockOffset?: V1ClockOffset; /** * * @type {V1Timer} * @memberof V1beta1ClockPreferences */ preferredTimer?: V1Timer; } export declare function V1beta1ClockPreferencesFromJSON(json: any): V1beta1ClockPreferences; export declare function V1beta1ClockPreferencesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1ClockPreferences; export declare function V1beta1ClockPreferencesToJSON(value?: V1beta1ClockPreferences | null): any;