You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If string type, an expression which selects parts of the states data output to become the data (payload) of the event referenced by 'triggerEventRef'.
102
102
// If object type, a custom object to become the data (payload) of the event referenced by 'triggerEventRef'.
103
-
DataObject`json:"data,omitempty"`
103
+
Data*Object`json:"data,omitempty"`
104
104
// Add additional extension context attributes to the produced event
Copy file name to clipboardExpand all lines: model/event_data_filter.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,13 +22,13 @@ import (
22
22
23
23
// EventDataFilter used to filter consumed event payloads.
24
24
typeEventDataFilterstruct {
25
-
// UseData represent where event payload is added/merged to state data. If it's false, data & toStateData should be ignored.
26
-
// Defaults to true.
25
+
// UseData represent where event payload is added/merged to state data. If it's false, data & toStateData
26
+
// should be ignored. Defaults to true.
27
27
UseDatabool`json:"useData,omitempty"`
28
-
29
28
// Workflow expression that filters of the event data (payload)
30
29
Datastring`json:"data,omitempty"`
31
-
// Workflow expression that selects a state data element to which the event payload should be added/merged into. If not specified, denotes, the top-level state data element.
30
+
// Workflow expression that selects a state data element to which the event payload should be added/merged into.
31
+
// If not specified, denotes, the top-level state data element.
0 commit comments