github.com/shishir-a412ed/docker@v1.3.2-0.20180103180333-fda904911d87/api/types/container/container_top.go (about) 1 package container 2 3 // ---------------------------------------------------------------------------- 4 // DO NOT EDIT THIS FILE 5 // This file was generated by `swagger generate operation` 6 // 7 // See hack/generate-swagger-api.sh 8 // ---------------------------------------------------------------------------- 9 10 // ContainerTopOKBody container top o k body 11 // swagger:model ContainerTopOKBody 12 type ContainerTopOKBody struct { 13 14 // Each process running in the container, where each is process is an array of values corresponding to the titles 15 // Required: true 16 Processes [][]string `json:"Processes"` 17 18 // The ps column titles 19 // Required: true 20 Titles []string `json:"Titles"` 21 }