Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.27 KB

File metadata and controls

30 lines (21 loc) · 1.27 KB

ContentEvaluationResponseMetadataSentiment

Properties

Name Type Description Notes
polarity float
subjectivity float

Example

from wordlift_client.models.content_evaluation_response_metadata_sentiment import ContentEvaluationResponseMetadataSentiment

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

# convert the object into a dict
content_evaluation_response_metadata_sentiment_dict = content_evaluation_response_metadata_sentiment_instance.to_dict()
# create an instance of ContentEvaluationResponseMetadataSentiment from a dict
content_evaluation_response_metadata_sentiment_from_dict = ContentEvaluationResponseMetadataSentiment.from_dict(content_evaluation_response_metadata_sentiment_dict)

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