github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/errorresolver/error_resolver_info.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package errorresolver 7 8 // Metadata related to a given error_id 9 type ErrorResolverInfo struct { 10 11 // The error id for which metadata information is needed 12 ErrorId int64 `json:"error_id"` 13 14 // Indicates whether there is a resolver associated with the error or not 15 ResolverPresent bool `json:"resolver_present"` 16 17 // User supplied metadata that might be required by the resolver 18 UserMetadata *ErrorResolverUserMetadata `json:"user_metadata,omitempty"` 19 }