cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
57 lines (56 loc) • 1.15 kB
TypeScript
/**
* 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 { TsvId } from './TsvId';
/**
*
* @export
* @interface Tsv
*/
export interface Tsv {
/**
*
* @type {TsvId}
* @memberof Tsv
*/
id?: TsvId;
/**
*
* @type {number}
* @memberof Tsv
*/
value?: number;
/**
*
* @type {number}
* @memberof Tsv
*/
qualityCode?: number;
/**
*
* @type {Date}
* @memberof Tsv
*/
startDate?: Date;
/**
*
* @type {Date}
* @memberof Tsv
*/
endDate?: Date;
}
/**
* Check if a given object implements the Tsv interface.
*/
export declare function instanceOfTsv(value: object): boolean;
export declare function TsvFromJSON(json: any): Tsv;
export declare function TsvFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tsv;
export declare function TsvToJSON(value?: Tsv | null): any;