blob: 909a3083e3b2beb6d5a01d676a9cbb47fb6edef2 [file] [log] [blame]
package gophercloud
// FlavorLink provides a reference to a flavor by either ID or by direct URL.
// Some services use just the ID, others use just the URL.
// This structure provides a common means of expressing both in a single field.
type FlavorLink struct {
Id string `json:"id"`
Links []Link `json:"links"`
}