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