github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/api/types/plugin_device.go (about) 1 package types 2 3 // This file was generated by the swagger tool. 4 // Editing this file might prove futile when you re-run the swagger generate command 5 6 // PluginDevice plugin device 7 // swagger:model PluginDevice 8 type PluginDevice struct { 9 10 // description 11 // Required: true 12 Description string `json:"Description"` 13 14 // name 15 // Required: true 16 Name string `json:"Name"` 17 18 // path 19 // Required: true 20 Path *string `json:"Path"` 21 22 // settable 23 // Required: true 24 Settable []string `json:"Settable"` 25 }