UNPKG

cwmsjs

Version:

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

91 lines (90 loc) 1.88 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 { CwmsId } from './CwmsId'; import { Location } from './Location'; import { 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; } export declare function EmbankmentFromJSON(json: any): Embankment; export declare function EmbankmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Embankment; export declare function EmbankmentToJSON(value?: Embankment | null): any;