UNPKG

cwmsjs

Version:

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

65 lines (64 loc) 1.44 kB
/** * 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 { Offset } from './Offset'; /** * * @export * @interface VerticalDatumInfo */ export interface VerticalDatumInfo { /** * * @type {string} * @memberof VerticalDatumInfo */ office?: string; /** * * @type {string} * @memberof VerticalDatumInfo */ unit?: string; /** * * @type {string} * @memberof VerticalDatumInfo */ location?: string; /** * * @type {string} * @memberof VerticalDatumInfo */ nativeDatum?: string; /** * * @type {number} * @memberof VerticalDatumInfo */ elevation?: number; /** * * @type {string} * @memberof VerticalDatumInfo */ localDatumName?: string; /** * * @type {Array<Offset>} * @memberof VerticalDatumInfo */ offsets?: Array<Offset>; } export declare function VerticalDatumInfoFromJSON(json: any): VerticalDatumInfo; export declare function VerticalDatumInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerticalDatumInfo; export declare function VerticalDatumInfoToJSON(value?: VerticalDatumInfo | null): any;