blob: 95dad59cd0108a6c84730b294702d87543b7d7d0 [file] [log] [blame]
package gophercloud
// ImageLink provides a reference to a image 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 ImageLink struct {
Id string `json:"id"`
Links []Link `json:"links"`
}