Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.15 KB

File metadata and controls

34 lines (25 loc) · 1.15 KB

DocumentUser

The user who created the version or performed the action.

Properties

NameTypeDescriptionNotes
first_namestr[optional]
last_namestr[optional]
emailstr[optional]
id_codestrNational identification code, when provided.[optional]
ipstrIP address captured when the action was performed.[optional]

Example

frompdf_generator_api_client.models.document_userimportDocumentUser# TODO update the JSON string belowjson="{}"# create an instance of DocumentUser from a JSON stringdocument_user_instance=DocumentUser.from_json(json)
# print the JSON string representation of the objectprint(DocumentUser.to_json())
# convert the object into a dictdocument_user_dict=document_user_instance.to_dict()
# create an instance of DocumentUser from a dictdocument_user_from_dict=DocumentUser.from_dict(document_user_dict)

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