/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Timezone } from './'; /** * * @export * @interface TimeEndpointResponse */ export interface TimeEndpointResponse { /** * * @type {number} * @memberof TimeEndpointResponse */ time: number; /** * * @type {Timezone} * @memberof TimeEndpointResponse */ timezone: Timezone; /** * * @type {Array} * @memberof TimeEndpointResponse */ timezones: Array; } export declare function TimeEndpointResponseFromJSON(json: any): TimeEndpointResponse; export declare function TimeEndpointResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeEndpointResponse; export declare function TimeEndpointResponseToJSON(value?: TimeEndpointResponse | null): any;