Autopilot objective state file operation details indicating what changed
| 277 | |
| 278 | // Autopilot objective state file operation details indicating what changed |
| 279 | type SessionAutopilotObjectiveChangedData struct { |
| 280 | // Current autopilot objective id, if one exists |
| 281 | ID *int64 `json:"id,omitempty"` |
| 282 | // The type of operation performed on the autopilot objective state file |
| 283 | Operation AutopilotObjectiveChangedOperation `json:"operation"` |
| 284 | // Current autopilot objective status, if one exists |
| 285 | Status *AutopilotObjectiveChangedStatus `json:"status,omitempty"` |
| 286 | } |
| 287 | |
| 288 | func (*SessionAutopilotObjectiveChangedData) sessionEventData() {} |
| 289 | func (*SessionAutopilotObjectiveChangedData) Type() SessionEventType { |
nothing calls this directly
no outgoing calls
no test coverage detected