| Name | Type | Description | Notes |
|---|---|---|---|
| product | ProductCollectionProduct | [optional] |
from whmcs_client.models.product_collection import ProductCollection
# TODO update the JSON string below
json = "{}"
# create an instance of ProductCollection from a JSON string
product_collection_instance = ProductCollection.from_json(json)
# print the JSON string representation of the object
print(ProductCollection.to_json())
# convert the object into a dict
product_collection_dict = product_collection_instance.to_dict()
# create an instance of ProductCollection from a dict
product_collection_from_dict = ProductCollection.from_dict(product_collection_dict)