Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

File metadata and controls

30 lines (21 loc) · 1 KB

AuditLogUiResponse

Properties

Name Type Description Notes
entries List[AuditLogEntry] [optional]
total int [optional]

Example

from instana_client.models.audit_log_ui_response import AuditLogUiResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AuditLogUiResponse from a JSON string
audit_log_ui_response_instance = AuditLogUiResponse.from_json(json)
# print the JSON string representation of the object
print(AuditLogUiResponse.to_json())

# convert the object into a dict
audit_log_ui_response_dict = audit_log_ui_response_instance.to_dict()
# create an instance of AuditLogUiResponse from a dict
audit_log_ui_response_from_dict = AuditLogUiResponse.from_dict(audit_log_ui_response_dict)

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