UNPKG

cwmsjs

Version:

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

63 lines (62 loc) 1.49 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. */ import type { 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 {Array<Offset>} * @memberof VerticalDatumInfo */ offsets?: Array<Offset>; } /** * Check if a given object implements the VerticalDatumInfo interface. */ export declare function instanceOfVerticalDatumInfo(value: object): boolean; export declare function VerticalDatumInfoFromJSON(json: any): VerticalDatumInfo; export declare function VerticalDatumInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerticalDatumInfo; export declare function VerticalDatumInfoToJSON(value?: VerticalDatumInfo | null): any;