Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

CreateEvaluationResponse

Properties

Name Type Description Notes
evaluation_id str [optional]
message str [optional]

Example

from instana_client.models.create_evaluation_response import CreateEvaluationResponse

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

# convert the object into a dict
create_evaluation_response_dict = create_evaluation_response_instance.to_dict()
# create an instance of CreateEvaluationResponse from a dict
create_evaluation_response_from_dict = CreateEvaluationResponse.from_dict(create_evaluation_response_dict)

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