github.com/demonoid81/moby@v0.0.0-20200517203328-62dd8e17c460/api/types/plugin_interface_type.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 // PluginInterfaceType plugin interface type 7 // swagger:model PluginInterfaceType 8 type PluginInterfaceType struct { 9 10 // capability 11 // Required: true 12 Capability string `json:"Capability"` 13 14 // prefix 15 // Required: true 16 Prefix string `json:"Prefix"` 17 18 // version 19 // Required: true 20 Version string `json:"Version"` 21 }