Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.04 KB

File metadata and controls

29 lines (21 loc) · 1.04 KB

ApiLogListModel

Response schema that represents a list of API log entries.

Properties

Name Type Description Notes
api_log_list List[ApiLogEntryModel] A list of ApiLogEntryModel objects

Example

from actinia_openapi_python_client.models.api_log_list_model import ApiLogListModel

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

# convert the object into a dict
api_log_list_model_dict = api_log_list_model_instance.to_dict()
# create an instance of ApiLogListModel from a dict
api_log_list_model_form_dict = api_log_list_model.from_dict(api_log_list_model_dict)

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