integration-libs/epd-visualization/core/connectors/scene/nodes-response.ts
Properties |
| category |
category:
|
Type : string
|
| source |
source:
|
Type : string
|
| tag |
tag:
|
Type : string
|
| value |
value:
|
Type : string
|
| valueType |
valueType:
|
Type : MetadatumValueType
|
export interface NodesResponse {
nodes?: TreeNode[];
}
export interface TreeNode {
sid: string;
metadata?: Metadatum[];
}
export enum MetadatumValueType {
string = 'string',
integer = 'integer',
float = 'float',
date = 'date',
blob = 'blob',
string_array = 'string_array',
}
export interface Metadatum {
source: string;
category: string;
tag: string;
value: string;
valueType: MetadatumValueType;
}