Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 923 Bytes

File metadata and controls

29 lines (21 loc) · 923 Bytes

HistoryData

The history data.

Properties

Name Type Description Notes
initiator_name str The name of the action initiator. [optional] [readonly]

Example

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)

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