Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
32 lines (23 loc) · 945 Bytes

File metadata and controls

executable file
·
32 lines (23 loc) · 945 Bytes

ProductName

Properties

Name Type Description Notes
name str
image str [optional] [readonly]
description str
small_print str

Example

from epiccore.models.product_name import ProductName

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

# convert the object into a dict
product_name_dict = product_name_instance.to_dict()
# create an instance of ProductName from a dict
product_name_form_dict = product_name.from_dict(product_name_dict)

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