cwmsjs
Version:
CWMS Data API Library for JavaScript/TypeScript created with OpenAPI generator for use with browser webapps
76 lines (75 loc) • 1.85 kB
TypeScript
/**
* 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 { AssignedLocation } from './AssignedLocation';
import type { 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>;
}
/**
* Check if a given object implements the LocationGroup interface.
*/
export declare function instanceOfLocationGroup(value: object): boolean;
export declare function LocationGroupFromJSON(json: any): LocationGroup;
export declare function LocationGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): LocationGroup;
export declare function LocationGroupToJSON(value?: LocationGroup | null): any;