Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
42 lines (34 loc) · 1.52 KB

File metadata and controls

42 lines (34 loc) · 1.52 KB

ActionHistoryRecord

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
number int [optional]
target_id str [optional]
target_name str [optional]
data object [optional]
action str [optional]
created_at str [optional]
user_id str [optional]
user_name str [optional]
ip_address str [optional]
auth_token_id str [optional]
auth_token_name str [optional]
auth_log_record_id str [optional]
auth_log_record_name str [optional]

Example

from clientapi_atrocore.models.action_history_record import ActionHistoryRecord

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

# convert the object into a dict
action_history_record_dict = action_history_record_instance.to_dict()
# create an instance of ActionHistoryRecord from a dict
action_history_record_form_dict = action_history_record.from_dict(action_history_record_dict)

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