UNPKG

cwmsjs

Version:

CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps

69 lines (68 loc) 1.78 kB
/** * CWMS Data API * CWMS REST API for Data Retrieval * * The version of the OpenAPI document: 2.3.2-2025.03.19 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Extents } from './Extents'; /** * * @export * @interface TimeSeriesCatalogEntry */ export interface TimeSeriesCatalogEntry { /** * * @type {string} * @memberof TimeSeriesCatalogEntry */ office?: string; /** * * @type {string} * @memberof TimeSeriesCatalogEntry */ name?: string; /** * * @type {string} * @memberof TimeSeriesCatalogEntry */ units?: string; /** * * @type {string} * @memberof TimeSeriesCatalogEntry */ interval?: string; /** * Offset from top of interval * @type {number} * @memberof TimeSeriesCatalogEntry */ intervalOffset?: number; /** * Only on 21.1.1 Database. The timezone the Interval Offset is from. * @type {string} * @memberof TimeSeriesCatalogEntry */ timeZone?: string; /** * * @type {Array<Extents>} * @memberof TimeSeriesCatalogEntry */ extents?: Array<Extents>; } /** * Check if a given object implements the TimeSeriesCatalogEntry interface. */ export declare function instanceOfTimeSeriesCatalogEntry(value: object): boolean; export declare function TimeSeriesCatalogEntryFromJSON(json: any): TimeSeriesCatalogEntry; export declare function TimeSeriesCatalogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeSeriesCatalogEntry; export declare function TimeSeriesCatalogEntryToJSON(value?: TimeSeriesCatalogEntry | null): any;