File

projects/dvl-fw-core/src/lib/interfaces/record-set.ts

Index

Properties
Methods

Methods

resolveParent
resolveParent(recordSets: RecordSet[])
Parameters :
Name Type Optional
recordSets RecordSet[] No
Returns : void
toJSON
toJSON()
Returns : any

Properties

dataVariables
dataVariables: DataVariable[]
Type : DataVariable[]
defaultRecordStream
defaultRecordStream: RecordStream
Type : RecordStream
description
description: string
Type : string
id
id: string
Type : string
label
label: string
Type : string
labelPlural
labelPlural: string
Type : string
parent
parent: RecordSet
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;
}

result-matching ""

    No results matching ""