@@ -236,13 +236,22 @@ type ExecutionNodeAdjacencyList struct {
236
236
}
237
237
238
238
type ExecutionNode struct {
239
- Uuid string `json:"uuid,omitempty"`
240
- SetupId string `json:"setupId,omitempty"`
241
- Name string `json:"name,omitempty"`
242
- Identifier string `json:"identifier,omitempty"`
243
- StepType string `json:"stepType,omitempty"`
244
- Status string `json:"status,omitempty"`
245
- LogBaseKey string `json:"logBaseKey,omitempty"`
239
+ Uuid string `json:"uuid,omitempty"`
240
+ SetupId string `json:"setupId,omitempty"`
241
+ Name string `json:"name,omitempty"`
242
+ Identifier string `json:"identifier,omitempty"`
243
+ StepType string `json:"stepType,omitempty"`
244
+ Status string `json:"status,omitempty"`
245
+ LogBaseKey string `json:"logBaseKey,omitempty"`
246
+ ExecutableResponses []ExecutableResponse `json:"executableResponses"`
247
+ }
248
+
249
+ type ExecutableResponse struct {
250
+ Async Async `json:"async"`
251
+ }
252
+
253
+ type Async struct {
254
+ LogKeys []string `json:"logKeys"`
246
255
}
247
256
248
257
type ResponseMessage struct {
0 commit comments