Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.3 KB

ProductList.md

File metadata and controls

36 lines (27 loc) · 1.3 KB

ProductList

A object with a data property that contains an array of up to limit products. Each entry in the array is a separate product object. If no more products are available, the resulting array will be empty.

Properties

Name Type Description Notes
data List[Product] [optional]
total int [optional]
per_page int [optional]
current_page int [optional]
last_page int [optional]
prev_page_url str [optional]
next_page_url str [optional]

Example

from clientapi_billingo.models.product_list import ProductList

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

# convert the object into a dict
product_list_dict = product_list_instance.to_dict()
# create an instance of ProductList from a dict
product_list_from_dict = ProductList.from_dict(product_list_dict)

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