blob: a7b0e10857eacaa9f9202336a69cba8cf9a48264 [file] [log] [blame]
Jamie Hannafordb3120f52014-09-23 15:17:57 +02001package openstack
2
3// CommonResult acts as a base struct that other results can embed. It contains
4// the deserialized JSON structured returned from the server (Resp), and any
5// errors that might have occurred during transport or deserialization.
6type CommonResult struct {
7 Resp map[string]interface{}
8 Err error
9}