Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.31 KB

File metadata and controls

34 lines (25 loc) · 1.31 KB

ContentFreshness

Legacy field - always returns status Unknown

Properties

Name Type Description Notes
status str Always returns Unknown as this is not currently analyzed [optional]
explanation str Explanation that this is not currently analyzed [optional]
category str Always returns "N/A" [optional]
publication_date str Always returns "N/A" [optional]
last_updated_date str Always returns "N/A" [optional]

Example

from wordlift_client.models.content_freshness import ContentFreshness

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

# convert the object into a dict
content_freshness_dict = content_freshness_instance.to_dict()
# create an instance of ContentFreshness from a dict
content_freshness_from_dict = ContentFreshness.from_dict(content_freshness_dict)

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