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â
đˇī¸ data
â
Reference to the Data
instance.
Typeâ
đˇī¸ 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â
đˇī¸ value
â
Reference to the immutable value.