| Name | Type | Description | Notes |
|---|
from dat_client.models.dat_last_modified import DatLastModified
# TODO update the JSON string below
json = "{}"
# create an instance of DatLastModified from a JSON string
dat_last_modified_instance = DatLastModified.from_json(json)
# print the JSON string representation of the object
print(DatLastModified.to_json())
# convert the object into a dict
dat_last_modified_dict = dat_last_modified_instance.to_dict()
# create an instance of DatLastModified from a dict
dat_last_modified_from_dict = DatLastModified.from_dict(dat_last_modified_dict)