Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1015 Bytes

Deletion.md

File metadata and controls

32 lines (24 loc) · 1015 Bytes

Deletion

Properties

Name Type Description Notes
type str [optional]
id str [optional]
mis_id str [optional]
deleted_at DateTimeObject [optional]
restored_at DateTimeObject [optional]

Example

from wonde.models.deletion import Deletion

# TODO update the JSON string below
json = "{}"
# create an instance of Deletion from a JSON string
deletion_instance = Deletion.from_json(json)
# print the JSON string representation of the object
print Deletion.to_json()

# convert the object into a dict
deletion_dict = deletion_instance.to_dict()
# create an instance of Deletion from a dict
deletion_form_dict = deletion.from_dict(deletion_dict)

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