Adding get user operation
diff --git a/openstack/identity/v2/users/results.go b/openstack/identity/v2/users/results.go
index fe62ada..7261b96 100644
--- a/openstack/identity/v2/users/results.go
+++ b/openstack/identity/v2/users/results.go
@@ -72,6 +72,12 @@
 	return &response.User, err
 }
 
+// CreateResult represents the result of a Create operation
 type CreateResult struct {
 	commonResult
 }
+
+// GetResult represents the result of a Get operation
+type GetResult struct {
+	commonResult
+}