17 lines
348 B
Go
17 lines
348 B
Go
package structs
|
|
|
|
// swagger:model ControlBody
|
|
type ControlBody struct {
|
|
RobotName string
|
|
JobId string
|
|
JobName string
|
|
Task ControlTask
|
|
}
|
|
|
|
type ControlTask struct {
|
|
X *int `json:",omitempty"`
|
|
Y *int `json:",omitempty"`
|
|
Z *int `json:",omitempty"`
|
|
ConnectedModule *int `json:",omitempty"`
|
|
}
|