blob: 3ca7c94eacfbd9c64087aabdd26e35a50bb3cabe [file] [log] [blame]
package gophercloud
// CommonResult acts as a base struct that other results can embed. It contains
// the deserialized JSON structure 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
}