blob: 96a6a50b3d69a3c59f3481ecb987fa9605b95c1d [file] [log] [blame]
package availabilityzones
// ServerExt is an extension to the base Server object
type ServerExt struct {
// AvailabilityZone is the availabilty zone the server is in.
AvailabilityZone string `json:"OS-EXT-AZ:availability_zone"`
}
// UnmarshalJSON to override default
func (r *ServerExt) UnmarshalJSON(b []byte) error {
return nil
}