blob: 909a3083e3b2beb6d5a01d676a9cbb47fb6edef2 [file] [log] [blame]
Samuel A. Falvo IIbc0d54a2013-07-08 14:45:21 -07001package gophercloud
2
3// FlavorLink provides a reference to a flavor by either ID or by direct URL.
4// Some services use just the ID, others use just the URL.
5// This structure provides a common means of expressing both in a single field.
6type FlavorLink struct {
7 Id string `json:"id"`
8 Links []Link `json:"links"`
9}