Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

ContentExpansionResponse

A Content Expansion response.

Properties

Name Type Description Notes
completion str The completion. [optional]

Example

from wordlift_client.models.content_expansion_response import ContentExpansionResponse

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

# convert the object into a dict
content_expansion_response_dict = content_expansion_response_instance.to_dict()
# create an instance of ContentExpansionResponse from a dict
content_expansion_response_from_dict = ContentExpansionResponse.from_dict(content_expansion_response_dict)

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