comment types; remove ok codes
diff --git a/openstack/storage/v1/objects/requests.go b/openstack/storage/v1/objects/requests.go
index 615a59d..a7dff40 100644
--- a/openstack/storage/v1/objects/requests.go
+++ b/openstack/storage/v1/objects/requests.go
@@ -8,8 +8,13 @@
 	"net/http"
 )
 
+// ListResult is a *http.Response that is returned from a call to the List function.
 type ListResult *http.Response
+
+// DownloadResult is a *http.Response that is returned from a call to the Download function.
 type DownloadResult *http.Response
+
+// GetResult is a *http.Response that is returned from a call to the Get function.
 type GetResult *http.Response
 
 // List is a function that retrieves all objects in a container. It also returns the details
@@ -32,7 +37,6 @@
 	url := c.GetContainerURL(opts.Container) + query
 	resp, err := perigee.Request("GET", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{200, 204},
 		Accept:      contentType,
 	})
 	return &resp.HttpResponse, err
@@ -56,7 +60,6 @@
 	url := c.GetObjectURL(opts.Container, opts.Name) + query
 	resp, err := perigee.Request("GET", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{200},
 	})
 	return &resp.HttpResponse, err
 }
@@ -93,7 +96,6 @@
 	_, err = perigee.Request("PUT", url, perigee.Options{
 		ReqBody:     reqBody,
 		MoreHeaders: h,
-		OkCodes:     []int{201},
 	})
 	return err
 }
@@ -114,7 +116,6 @@
 	url := c.GetObjectURL(opts.Container, opts.Name)
 	_, err = perigee.Request("COPY", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{201},
 	})
 	return err
 }
@@ -131,7 +132,6 @@
 	url := c.GetObjectURL(opts.Container, opts.Name) + query
 	_, err = perigee.Request("DELETE", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{204},
 	})
 	return err
 }
@@ -151,7 +151,6 @@
 	url := c.GetObjectURL(opts.Container, opts.Name)
 	resp, err := perigee.Request("HEAD", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{204},
 	})
 	return &resp.HttpResponse, err
 }
@@ -174,7 +173,6 @@
 	url := c.GetObjectURL(opts.Container, opts.Name)
 	_, err = perigee.Request("POST", url, perigee.Options{
 		MoreHeaders: h,
-		OkCodes:     []int{202, 204},
 	})
 	return err
 }