| Name | Type | Description | Notes |
|---|---|---|---|
| action | str | ||
| actor | LogEntryActor | ||
| id | str | ||
| message | str | ||
| meta | Dict[str, object] | ||
| timestamp | int | [optional] |
from instana_client.models.audit_log_entry import AuditLogEntry
# TODO update the JSON string below
json = "{}"
# create an instance of AuditLogEntry from a JSON string
audit_log_entry_instance = AuditLogEntry.from_json(json)
# print the JSON string representation of the object
print(AuditLogEntry.to_json())
# convert the object into a dict
audit_log_entry_dict = audit_log_entry_instance.to_dict()
# create an instance of AuditLogEntry from a dict
audit_log_entry_from_dict = AuditLogEntry.from_dict(audit_log_entry_dict)