Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

QueryAuditLogs200Response

Properties

Name Type Description Notes
items List[AuditLogEntry]
cursor str [optional]
has_more bool

Example

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)

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