blob: baf8d6b37fd0a0ed902366e3b662c2efefc5f409 [file] [log] [blame]
Ash Wilsonb73b7f82014-08-29 15:38:06 -04001package services
2
3// ServiceResult is the result of a list or information query.
4type ServiceResult struct {
5 Description *string `json:"description,omitempty"`
6 ID string `json:"id"`
7 Name string `json:"name"`
8 Type string `json:"type"`
9}