Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

CommonAudit.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

CommonAudit

Gives informations about the user that created the object and the last user to have modified it. If the object was never modified after creation, objAuditdetailModified won't be returned.

Properties

Name Type Description Notes
obj_auditdetail_created CommonAuditdetail
obj_auditdetail_modified CommonAuditdetail [optional]

Example

from eZmaxApi.models.common_audit import CommonAudit

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

# convert the object into a dict
common_audit_dict = common_audit_instance.to_dict()
# create an instance of CommonAudit from a dict
common_audit_form_dict = common_audit.from_dict(common_audit_dict)

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