github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/errorresolver/error_resolver_user_input_data.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 // Corresponds to one property entered by the user 9 type ErrorResolverUserInputData struct { 10 11 // The datatype of the given property. Useful for data validation 12 DataType string `json:"data_type"` 13 14 // Name of the property supplied by the user 15 PropertyName string `json:"property_name"` 16 17 // The value associated with the above property 18 PropertyValue string `json:"property_value,omitempty"` 19 }