Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.32 KB

File metadata and controls

30 lines (21 loc) · 1.32 KB

ContentEvaluationResponseQualityScore

Properties

Name Type Description Notes
overall float The overall quality score.
breakdown ContentEvaluationResponseQualityScoreBreakdown

Example

from wordlift_client.models.content_evaluation_response_quality_score import ContentEvaluationResponseQualityScore

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

# convert the object into a dict
content_evaluation_response_quality_score_dict = content_evaluation_response_quality_score_instance.to_dict()
# create an instance of ContentEvaluationResponseQualityScore from a dict
content_evaluation_response_quality_score_from_dict = ContentEvaluationResponseQualityScore.from_dict(content_evaluation_response_quality_score_dict)

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