Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

ContentEvaluationResponse

Properties

Name Type Description Notes
quality_score ContentEvaluationResponseQualityScore
metadata ContentEvaluationResponseMetadata

Example

from wordlift_client.models.content_evaluation_response import ContentEvaluationResponse

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

# convert the object into a dict
content_evaluation_response_dict = content_evaluation_response_instance.to_dict()
# create an instance of ContentEvaluationResponse from a dict
content_evaluation_response_from_dict = ContentEvaluationResponse.from_dict(content_evaluation_response_dict)

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