File

projects/web-mev/src/app/_models/metadata.ts

Description

Custom set

Index

Properties

Properties

color
color: string
Type : string
Optional
elements
elements: CustomSetElement[]
Type : CustomSetElement[]
multiple
multiple: boolean
Type : boolean
name
name: string
Type : string
type
type: CustomSetType
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;
}

result-matching ""

    No results matching ""