Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

DocumentAction

Properties

NameTypeDescriptionNotes
actionstrThe action performed on the document.[optional]
personDocumentUser[optional]
created_atstrAction timestamp (Y-m-d H:i:s).[optional]

Example

frompdf_generator_api_client.models.document_actionimportDocumentAction# TODO update the JSON string belowjson="{}"# create an instance of DocumentAction from a JSON stringdocument_action_instance=DocumentAction.from_json(json)
# print the JSON string representation of the objectprint(DocumentAction.to_json())
# convert the object into a dictdocument_action_dict=document_action_instance.to_dict()
# create an instance of DocumentAction from a dictdocument_action_from_dict=DocumentAction.from_dict(document_action_dict)

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