cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
72 lines (71 loc) • 1.69 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 { AssignedLocation } from './AssignedLocation';
import { LocationCategory } from './LocationCategory';
/**
* A representation of a location group
* @export
* @interface LocationGroup
*/
export interface LocationGroup {
/**
* Owning office of object.
* @type {string}
* @memberof LocationGroup
*/
officeId: string;
/**
*
* @type {string}
* @memberof LocationGroup
*/
id?: string;
/**
*
* @type {LocationCategory}
* @memberof LocationGroup
*/
locationCategory?: LocationCategory;
/**
*
* @type {string}
* @memberof LocationGroup
*/
description?: string;
/**
*
* @type {string}
* @memberof LocationGroup
*/
sharedLocAliasId?: string;
/**
*
* @type {string}
* @memberof LocationGroup
*/
sharedRefLocationId?: string;
/**
*
* @type {number}
* @memberof LocationGroup
*/
locGroupAttribute?: number;
/**
*
* @type {Array<AssignedLocation>}
* @memberof LocationGroup
*/
assignedLocations?: Array<AssignedLocation>;
}
export declare function LocationGroupFromJSON(json: any): LocationGroup;
export declare function LocationGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationGroup;
export declare function LocationGroupToJSON(value?: LocationGroup | null): any;