Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 868 Bytes

File metadata and controls

28 lines (19 loc) · 868 Bytes

DatLastModified

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]