Skip to main content

IDataChangeEvent interface

📖 Description​

Describes the event interface for the onInstanceData event of the runner instance.

📃 Type declaration​

interface IDataChangeEvent {
  id: string;Readonly
  key: string;Readonly
  slot: Slot;Readonly
  data: Data;Readonly
  value: Value;Readonly
  context: Context;Readonly
  isSealed: boolean;Readonly
}
🖱ī¸ Hover with the mouse over a property name for a tooltip with the description of that property. Click it for more information.

🗃ī¸ Properties​


🏷ī¸ context​

Specifies the Context instance.

Type​

Context


🏷ī¸ data​

Reference to the Data instance.

Type​

Data


🏷ī¸ id​

Specifies the identifier of the value.

Type​

string


🏷ī¸ isSealed​

Retrieves if the value is sealed. A value is considered sealed when the form respondent has seen/answered the block and is past the section that contains the block that denotes this value. Only sealed values can be considered as confirmed by the form respondent. If a value is not sealed, it is not exportable.

Type​

boolean


🏷ī¸ key​

Specifies the key (unique identifier) for the value within the context.

Type​

string


🏷ī¸ slot​

Reference to the slot.

Type​

Slot


🏷ī¸ value​

Reference to the immutable value.

Type​

ImmutableValue