blob: aba3aa1d72539fc39ed47e3120969f5315bec3cc [file] [log] [blame]
Ash Wilsonb73b7f82014-08-29 15:38:06 -04001package services
2
Ash Wilson2f5dd1f2014-09-03 14:01:37 -04003import "github.com/rackspace/gophercloud"
4
Ash Wilsonb73b7f82014-08-29 15:38:06 -04005// ServiceResult is the result of a list or information query.
6type ServiceResult struct {
7 Description *string `json:"description,omitempty"`
8 ID string `json:"id"`
9 Name string `json:"name"`
10 Type string `json:"type"`
11}
Ash Wilson2f5dd1f2014-09-03 14:01:37 -040012
13// ServiceListResult is a paged collection of Services.
14type ServiceListResult struct {
15 gophercloud.Pagination
16
17 Services []ServiceResult `json:"services"`
18}