cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
46 lines (45 loc) • 928 B
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.
*/
/**
*
* @export
* @interface TsvId
*/
export interface TsvId {
/**
*
* @type {number}
* @memberof TsvId
*/
tsCode?: number;
/**
*
* @type {Date}
* @memberof TsvId
*/
dateTime?: Date;
/**
*
* @type {Date}
* @memberof TsvId
*/
versionDate?: Date;
/**
*
* @type {Date}
* @memberof TsvId
*/
dataEntryDate?: Date;
}
export declare function TsvIdFromJSON(json: any): TsvId;
export declare function TsvIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): TsvId;
export declare function TsvIdToJSON(value?: TsvId | null): any;