github.com/gophercloud/gophercloud@v1.11.0/openstack/identity/v3/osinherit/results.go (about) 1 package osinherit 2 3 import "github.com/gophercloud/gophercloud" 4 5 // AssignmentResult represents the result of an assign operation. 6 // Call ExtractErr method to determine if the request succeeded or failed. 7 type AssignmentResult struct { 8 gophercloud.ErrResult 9 } 10 11 // ValidateResult represents the result of an validate operation. 12 // Call ExtractErr method to determine if the request succeeded or failed. 13 type ValidateResult struct { 14 gophercloud.ErrResult 15 } 16 17 // UnassignmentResult represents the result of an unassign operation. 18 // Call ExtractErr method to determine if the request succeeded or failed. 19 type UnassignmentResult struct { 20 gophercloud.ErrResult 21 }