cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
36 lines (35 loc) • 1.08 kB
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';
import { LocationsWithProjectKind } from './LocationsWithProjectKind';
/**
*
* @export
* @interface ProjectChildLocations
*/
export interface ProjectChildLocations {
/**
*
* @type {CwmsId}
* @memberof ProjectChildLocations
*/
projectId?: CwmsId;
/**
*
* @type {Array<LocationsWithProjectKind>}
* @memberof ProjectChildLocations
*/
locationsByKind?: Array<LocationsWithProjectKind>;
}
export declare function ProjectChildLocationsFromJSON(json: any): ProjectChildLocations;
export declare function ProjectChildLocationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectChildLocations;
export declare function ProjectChildLocationsToJSON(value?: ProjectChildLocations | null): any;