| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Product name. |
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)