The history data.
| Name | Type | Description | Notes |
|---|---|---|---|
| initiator_name | str | The name of the action initiator. | [optional] [readonly] |
from docspace_api_sdk.models.history_data import HistoryData
# TODO update the JSON string below
json = "{}"
# create an instance of HistoryData from a JSON string
history_data_instance = HistoryData.from_json(json)
# print the JSON string representation of the object
print(HistoryData.to_json())
# convert the object into a dict
history_data_dict = history_data_instance.to_dict()
# create an instance of HistoryData from a dict
history_data_from_dict = HistoryData.from_dict(history_data_dict)