blob: 95dad59cd0108a6c84730b294702d87543b7d7d0 [file] [log] [blame]
Samuel A. Falvo IIbc0d54a2013-07-08 14:45:21 -07001package gophercloud
2
3// ImageLink provides a reference to a image 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 ImageLink struct {
7 Id string `json:"id"`
8 Links []Link `json:"links"`
9}