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