Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

Summary

A response to the summarize request. Contains both a metadata section that contains information about the response, and a data section that contains the actual summary.

Properties

Name Type Description Notes
meta Meta [optional]
data SummaryData [optional]

Example

from openapi_client.models.summary import Summary

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

# convert the object into a dict
summary_dict = summary_instance.to_dict()
# create an instance of Summary from a dict
summary_from_dict = Summary.from_dict(summary_dict)

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