@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.11 kB
TypeScript
/**
* 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 { V1ClockOffsetUTC } from './';
/**
* Exactly one of its members must be set.
* @export
* @interface V1ClockOffset
*/
export interface V1ClockOffset {
/**
* Timezone sets the guest clock to the specified timezone. Zone name follows the TZ environment variable format (e.g. 'America/New_York').
* @type {string}
* @memberof V1ClockOffset
*/
timezone?: string;
/**
*
* @type {V1ClockOffsetUTC}
* @memberof V1ClockOffset
*/
utc?: V1ClockOffsetUTC;
}
export declare function V1ClockOffsetFromJSON(json: any): V1ClockOffset;
export declare function V1ClockOffsetFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ClockOffset;
export declare function V1ClockOffsetToJSON(value?: V1ClockOffset | null): any;