| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[AuditLogEntry] | ||
| cursor | str | [optional] | |
| has_more | bool |
from stratum.models.query_audit_logs200_response import QueryAuditLogs200Response
# TODO update the JSON string below
json = "{}"
# create an instance of QueryAuditLogs200Response from a JSON string
query_audit_logs200_response_instance = QueryAuditLogs200Response.from_json(json)
# print the JSON string representation of the object
print(QueryAuditLogs200Response.to_json())
# convert the object into a dict
query_audit_logs200_response_dict = query_audit_logs200_response_instance.to_dict()
# create an instance of QueryAuditLogs200Response from a dict
query_audit_logs200_response_from_dict = QueryAuditLogs200Response.from_dict(query_audit_logs200_response_dict)