Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.2 KB

File metadata and controls

39 lines (30 loc) · 1.2 KB

AuditLogEntry

Properties

Name Type Description Notes
id UUID
tenant_id UUID [optional]
action str
resource_type str
resource_id str
actor_id str
actor_type str
source_ip str [optional]
request_id str [optional]
changes Dict[str, object] [optional]
created_at datetime

Example

from stratum.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)

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