Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 981 Bytes

File metadata and controls

29 lines (20 loc) · 981 Bytes

ProductCollection

Properties

Name Type Description Notes
product ProductCollectionProduct [optional]

Example

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)

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