Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

EvaluationListResponse

Properties

Name Type Description Notes
evaluations List[EvaluationListItem] [optional]
total int [optional]

Example

from instana_client.models.evaluation_list_response import EvaluationListResponse

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

# convert the object into a dict
evaluation_list_response_dict = evaluation_list_response_instance.to_dict()
# create an instance of EvaluationListResponse from a dict
evaluation_list_response_from_dict = EvaluationListResponse.from_dict(evaluation_list_response_dict)

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