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