Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.66 KB

File metadata and controls

37 lines (28 loc) · 1.66 KB

EzsigndocumentlogResponse

An Ezsigndocumentlog Object

Properties

Name Type Description Notes
fki_user_id int The unique ID of the User [optional]
fki_ezsignsigner_id int The unique ID of the Ezsignsigner [optional]
dt_ezsigndocumentlog_datetime str The date and time at which the event was logged
e_ezsigndocumentlog_type FieldEEzsigndocumentlogType
s_ezsigndocumentlog_detail str The detail of the Ezsigndocumentlog
s_ezsigndocumentlog_lastname str The last name of the User or Ezsignsigner
s_ezsigndocumentlog_firstname str The first name of the User or Ezsignsigner
s_ezsigndocumentlog_ip str Represent an IP address.

Example

from eZmaxApi.models.ezsigndocumentlog_response import EzsigndocumentlogResponse

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

# convert the object into a dict
ezsigndocumentlog_response_dict = ezsigndocumentlog_response_instance.to_dict()
# create an instance of EzsigndocumentlogResponse from a dict
ezsigndocumentlog_response_from_dict = EzsigndocumentlogResponse.from_dict(ezsigndocumentlog_response_dict)

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