UNPKG

cwmsjs

Version:

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

50 lines (49 loc) 1.06 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. */ /** * * @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; } /** * Check if a given object implements the TsvId interface. */ export declare function instanceOfTsvId(value: object): boolean; export declare function TsvIdFromJSON(json: any): TsvId; export declare function TsvIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): TsvId; export declare function TsvIdToJSON(value?: TsvId | null): any;