github.com/naphatkrit/deis@v1.12.3/client/controller/api/ps.go (about) 1 package api 2 3 // Process defines the structure of a process. 4 type Process struct { 5 Owner string `json:"owner"` 6 App string `json:"app"` 7 Release string `json:"release"` 8 Created string `json:"created"` 9 Updated string `json:"updated"` 10 UUID string `json:"uuid"` 11 Type string `json:"type"` 12 Num int `json:"num"` 13 State string `json:"state"` 14 }