Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

MarkedAsDeleted

Properties

Name Type Description Notes
delete_progress int The progress of the result deletion [optional] [readonly]
value bool The flag that indicates if the result was marked as deleted [optional] [readonly]

Example

from cyperf.models.marked_as_deleted import MarkedAsDeleted

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

# convert the object into a dict
marked_as_deleted_dict = marked_as_deleted_instance.to_dict()
# create an instance of MarkedAsDeleted from a dict
marked_as_deleted_from_dict = MarkedAsDeleted.from_dict(marked_as_deleted_dict)

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