Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 991 Bytes

AuditApp.md

File metadata and controls

32 lines (24 loc) · 991 Bytes

AuditApp

Properties

Name Type Description Notes
id str
name str [optional]
is_enabled bool [optional] [default to True]
max_entry_id int [optional]
min_entry_id int [optional]

Example

from alfresco_core_api_client.models.audit_app import AuditApp

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

# convert the object into a dict
audit_app_dict = audit_app_instance.to_dict()
# create an instance of AuditApp from a dict
audit_app_form_dict = audit_app.from_dict(audit_app_dict)

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