Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

LongtailResponse.md

File metadata and controls

30 lines (21 loc) · 1.01 KB

LongtailResponse

Properties

Name Type Description Notes
summary str The page summary. [optional]
entities List[Entity] The list of entities matching the query. [optional]

Example

from wordlift_client.models.longtail_response import LongtailResponse

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

# convert the object into a dict
longtail_response_dict = longtail_response_instance.to_dict()
# create an instance of LongtailResponse from a dict
longtail_response_from_dict = LongtailResponse.from_dict(longtail_response_dict)

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