UNPKG

cwmsjs

Version:

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

95 lines (94 loc) 2.03 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 { CwmsId } from './CwmsId'; import type { Location } from './Location'; import type { LookupType } from './LookupType'; /** * * @export * @interface Embankment */ export interface Embankment { /** * * @type {CwmsId} * @memberof Embankment */ projectId: CwmsId; /** * * @type {Location} * @memberof Embankment */ location: Location; /** * * @type {LookupType} * @memberof Embankment */ structureType?: LookupType; /** * * @type {number} * @memberof Embankment */ upstreamSideSlope?: number; /** * * @type {number} * @memberof Embankment */ downstreamSideSlope?: number; /** * * @type {number} * @memberof Embankment */ structureLength?: number; /** * * @type {number} * @memberof Embankment */ maxHeight?: number; /** * * @type {number} * @memberof Embankment */ topWidth?: number; /** * * @type {string} * @memberof Embankment */ lengthUnits?: string; /** * * @type {LookupType} * @memberof Embankment */ downstreamProtectionType?: LookupType; /** * * @type {LookupType} * @memberof Embankment */ upstreamProtectionType?: LookupType; } /** * Check if a given object implements the Embankment interface. */ export declare function instanceOfEmbankment(value: object): boolean; export declare function EmbankmentFromJSON(json: any): Embankment; export declare function EmbankmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Embankment; export declare function EmbankmentToJSON(value?: Embankment | null): any;