Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 883 Bytes

File metadata and controls

30 lines (21 loc) · 883 Bytes

Product

The specific properties of the product this item belongs to, if available.

Properties

Name Type Description Notes
name str The product the item belongs to.

Example

from talon_one.models.product import Product

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

# convert the object into a dict
product_dict = product_instance.to_dict()
# create an instance of Product from a dict
product_from_dict = Product.from_dict(product_dict)

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