cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
47 lines (46 loc) • 982 B
TypeScript
/**
* 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';
/**
*
* @export
* @interface Entity
*/
export interface Entity {
/**
*
* @type {CwmsId}
* @memberof Entity
*/
id: CwmsId;
/**
*
* @type {string}
* @memberof Entity
*/
parentEntityId?: string;
/**
*
* @type {string}
* @memberof Entity
*/
categoryId?: string;
/**
*
* @type {string}
* @memberof Entity
*/
longName?: string;
}
export declare function EntityFromJSON(json: any): Entity;
export declare function EntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): Entity;
export declare function EntityToJSON(value?: Entity | null): any;