blob: a7b0e10857eacaa9f9202336a69cba8cf9a48264 [file] [log] [blame]
package openstack
// CommonResult acts as a base struct that other results can embed. It contains
// the deserialized JSON structured returned from the server (Resp), and any
// errors that might have occurred during transport or deserialization.
type CommonResult struct {
Resp map[string]interface{}
Err error
}