Name | Type | Description | Notes |
---|---|---|---|
operator | str | [optional] | |
int_value | int | [optional] | |
element | TranslatedId | [optional] |
from dofusdude.models.condition import Condition
# TODO update the JSON string below
json = "{}"
# create an instance of Condition from a JSON string
condition_instance = Condition.from_json(json)
# print the JSON string representation of the object
print(Condition.to_json())
# convert the object into a dict
condition_dict = condition_instance.to_dict()
# create an instance of Condition from a dict
condition_from_dict = Condition.from_dict(condition_dict)