The list of fixes to apply when the rule validation fails.
| Name | Type | Description | Notes |
|---|---|---|---|
| type | ValidationTypeEnum | [optional] | |
| what | str | [optional] | |
| var_with | str | [optional] |
from wordlift_client.models.validation_fix import ValidationFix
# TODO update the JSON string below
json = "{}"
# create an instance of ValidationFix from a JSON string
validation_fix_instance = ValidationFix.from_json(json)
# print the JSON string representation of the object
print(ValidationFix.to_json())
# convert the object into a dict
validation_fix_dict = validation_fix_instance.to_dict()
# create an instance of ValidationFix from a dict
validation_fix_from_dict = ValidationFix.from_dict(validation_fix_dict)