cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
72 lines (71 loc) • 1.8 kB
TypeScript
/**
* CWMS Data API
* CWMS REST API for Data Retrieval
*
* The version of the OpenAPI document: 2.4.0-2026.3.16
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Alias } from './Alias';
import { TimeSeriesExtents } from './TimeSeriesExtents';
/**
*
* @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<TimeSeriesExtents>}
* @memberof TimeSeriesCatalogEntry
*/
extents?: Array<TimeSeriesExtents>;
/**
*
* @type {Array<Alias>}
* @memberof TimeSeriesCatalogEntry
*/
aliases?: Array<Alias>;
}
export declare function TimeSeriesCatalogEntryFromJSON(json: any): TimeSeriesCatalogEntry;
export declare function TimeSeriesCatalogEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeSeriesCatalogEntry;
export declare function TimeSeriesCatalogEntryToJSON(value?: TimeSeriesCatalogEntry | null): any;