| Name | Type | Description | Notes |
|---|---|---|---|
| links | Dict[str, Link] | The location and content type of related resources | |
| id | str | The ID of the audit log entry | |
| account_id | str | The ID of the account to which this audit log entry belongs | |
| var_date | int | ||
| accesses | List[ResourceAccess] | Details on the actions performed and resources acted on in this audit log entry | |
| kind | str | ||
| name | str | The name of the resource this audit log entry refers to | |
| description | str | Description of the change recorded in the audit log entry | |
| short_description | str | Shorter version of the change recorded in the audit log entry | |
| comment | str | Optional comment for the audit log entry | [optional] |
| subject | SubjectDataRep | [optional] | |
| member | MemberDataRep | [optional] | |
| token | TokenSummary | [optional] | |
| app | AuthorizedAppDataRep | [optional] | |
| title_verb | str | The action and resource recorded in this audit log entry | [optional] |
| title | str | A description of what occurred, in the format <code>member</code> <code>titleVerb</code> <code>target</code> | [optional] |
| target | TargetResourceRep | [optional] | |
| parent | ParentResourceRep | [optional] |
from launchdarkly_api.models.audit_log_entry_listing_rep import AuditLogEntryListingRep
# TODO update the JSON string below
json = "{}"
# create an instance of AuditLogEntryListingRep from a JSON string
audit_log_entry_listing_rep_instance = AuditLogEntryListingRep.from_json(json)
# print the JSON string representation of the object
print(AuditLogEntryListingRep.to_json())
# convert the object into a dict
audit_log_entry_listing_rep_dict = audit_log_entry_listing_rep_instance.to_dict()
# create an instance of AuditLogEntryListingRep from a dict
audit_log_entry_listing_rep_from_dict = AuditLogEntryListingRep.from_dict(audit_log_entry_listing_rep_dict)