Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

ContentExpansionRequest.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

ContentExpansionRequest

The Content Expansion request.

Properties

Name Type Description Notes
url str The target URL.
entities List[str] A list of entity labels.
openai_key str The OpenAI key.

Example

from wordlift_client.models.content_expansion_request import ContentExpansionRequest

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

# convert the object into a dict
content_expansion_request_dict = content_expansion_request_instance.to_dict()
# create an instance of ContentExpansionRequest from a dict
content_expansion_request_from_dict = ContentExpansionRequest.from_dict(content_expansion_request_dict)

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