| Name | Type | Description | Notes |
|---|---|---|---|
| var_date | datetime | [optional] |
from launchdarkly_api.models.modification import Modification
# TODO update the JSON string below
json = "{}"
# create an instance of Modification from a JSON string
modification_instance = Modification.from_json(json)
# print the JSON string representation of the object
print(Modification.to_json())
# convert the object into a dict
modification_dict = modification_instance.to_dict()
# create an instance of Modification from a dict
modification_from_dict = Modification.from_dict(modification_dict)