projects/web-mev/src/app/_models/metadata.ts
Custom set
Properties |
| color |
color:
|
Type : string
|
| Optional |
| elements |
elements:
|
Type : CustomSetElement[]
|
| multiple |
multiple:
|
Type : boolean
|
| name |
name:
|
Type : string
|
| type |
type:
|
Type : CustomSetType
|
export enum CustomSetType {
ObservationSet = 'Observation set',
FeatureSet = 'Feature set'
}
/**
* Custom set element
*
*/
export interface CustomSetElement {
id: string;
attributes?: [];
}
/**
* Custom set
*
*/
export interface CustomSet {
name: string;
color?: string;
type: CustomSetType;
elements: CustomSetElement[];
multiple: boolean;
}