| Ash Wilson | b73b7f8 | 2014-08-29 15:38:06 -0400 | [diff] [blame^] | 1 | package services |
| 2 | |||||
| 3 | // ServiceResult is the result of a list or information query. | ||||
| 4 | type ServiceResult struct { | ||||
| 5 | Description *string `json:"description,omitempty"` | ||||
| 6 | ID string `json:"id"` | ||||
| 7 | Name string `json:"name"` | ||||
| 8 | Type string `json:"type"` | ||||
| 9 | } | ||||