plugin_device.go 498 B

12345678910111213141516171819202122232425
  1. package types
  2. // This file was generated by the swagger tool.
  3. // Editing this file might prove futile when you re-run the swagger generate command
  4. // PluginDevice plugin device
  5. // swagger:model PluginDevice
  6. type PluginDevice struct {
  7. // description
  8. // Required: true
  9. Description string `json:"Description"`
  10. // name
  11. // Required: true
  12. Name string `json:"Name"`
  13. // path
  14. // Required: true
  15. Path *string `json:"Path"`
  16. // settable
  17. // Required: true
  18. Settable []string `json:"Settable"`
  19. }