Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 968 Bytes

CleanupResult.md

File metadata and controls

30 lines (21 loc) · 968 Bytes

CleanupResult

The result data for a completed cleanup job.

Properties

Name Type Description Notes
scheduled_job JobReference [optional]

Example

from waylay.services.registry.models.cleanup_result import CleanupResult

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

# convert the object into a dict
cleanup_result_dict = cleanup_result_instance.to_dict()
# create an instance of CleanupResult from a dict
cleanup_result_form_dict = cleanup_result.from_dict(cleanup_result_dict)

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