Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
source | str | The source service generating the event. | |
action | str | ||
actor | V1beta1AuditLogActor | [optional] | |
target | V1beta1AuditLogTarget | [optional] | |
context | Dict[str, str] | [optional] | |
created_at | datetime | The time the log was created. | [optional] |
from frontier_api.models.v1beta1_audit_log import V1beta1AuditLog
# TODO update the JSON string below
json = "{}"
# create an instance of V1beta1AuditLog from a JSON string
v1beta1_audit_log_instance = V1beta1AuditLog.from_json(json)
# print the JSON string representation of the object
print V1beta1AuditLog.to_json()
# convert the object into a dict
v1beta1_audit_log_dict = v1beta1_audit_log_instance.to_dict()
# create an instance of V1beta1AuditLog from a dict
v1beta1_audit_log_form_dict = v1beta1_audit_log.from_dict(v1beta1_audit_log_dict)