Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1012 Bytes

File metadata and controls

30 lines (21 loc) · 1012 Bytes

AccessLogResponse

Properties

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

Example

from instana_client.models.access_log_response import AccessLogResponse

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

# convert the object into a dict
access_log_response_dict = access_log_response_instance.to_dict()
# create an instance of AccessLogResponse from a dict
access_log_response_from_dict = AccessLogResponse.from_dict(access_log_response_dict)

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