Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 885 Bytes

File metadata and controls

29 lines (20 loc) · 885 Bytes

ProductSummary

Properties

Name Type Description Notes
name str Product name.

Example

from revengai.models.product_summary import ProductSummary

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

# convert the object into a dict
product_summary_dict = product_summary_instance.to_dict()
# create an instance of ProductSummary from a dict
product_summary_from_dict = ProductSummary.from_dict(product_summary_dict)

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