github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/api/types/container/container_changes.go (about) 1 package container // import "github.com/demonoid81/moby/api/types/container" 2 3 // ---------------------------------------------------------------------------- 4 // Code generated by `swagger generate operation`. DO NOT EDIT. 5 // 6 // See hack/generate-swagger-api.sh 7 // ---------------------------------------------------------------------------- 8 9 // ContainerChangeResponseItem change item in response to ContainerChanges operation 10 // swagger:model ContainerChangeResponseItem 11 type ContainerChangeResponseItem struct { 12 13 // Kind of change 14 // Required: true 15 Kind uint8 `json:"Kind"` 16 17 // Path to file that has changed 18 // Required: true 19 Path string `json:"Path"` 20 }