Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

ListProductsResponsePage.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

ListProductsResponsePage

Properties

Name Type Description Notes
data List[Product] [optional]

Example

from fattureincloud_python_sdk.models.list_products_response_page import ListProductsResponsePage

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

# convert the object into a dict
list_products_response_page_dict = list_products_response_page_instance.to_dict()
# create an instance of ListProductsResponsePage from a dict
list_products_response_page_from_dict = ListProductsResponsePage.from_dict(list_products_response_page_dict)

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