projects/dvl-fw-core/src/lib/interfaces/record-set.ts
Properties |
Methods |
resolveParent | ||||||
resolveParent(recordSets: RecordSet[])
|
||||||
Parameters :
Returns :
void
|
toJSON |
toJSON()
|
Returns :
any
|
dataVariables |
dataVariables:
|
Type : DataVariable[]
|
defaultRecordStream |
defaultRecordStream:
|
Type : RecordStream
|
description |
description:
|
Type : string
|
id |
id:
|
Type : string
|
label |
label:
|
Type : string
|
labelPlural |
labelPlural:
|
Type : string
|
parent |
parent:
|
Type : RecordSet
|
import { DataVariable } from './data-variable';
import { RecordStream } from './record-stream';
export interface RecordSet {
id: string;
label: string;
labelPlural: string;
parent: RecordSet;
description: string;
defaultRecordStream: RecordStream;
dataVariables: DataVariable[];
// Function to be run after all RecordSets are added to the project
resolveParent(recordSets: RecordSet[]): void;
toJSON(): any;
}