Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

LastRunAtUpdateItem.md

File metadata and controls

30 lines (21 loc) · 1.06 KB

LastRunAtUpdateItem

Properties

Name Type Description Notes
policy_id str The id of the tenant policy.
last_run_at datetime The timestamp of the last run of the policy.

Example

from onelens_backend_client.models.last_run_at_update_item import LastRunAtUpdateItem

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

# convert the object into a dict
last_run_at_update_item_dict = last_run_at_update_item_instance.to_dict()
# create an instance of LastRunAtUpdateItem from a dict
last_run_at_update_item_form_dict = last_run_at_update_item.from_dict(last_run_at_update_item_dict)

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