Name | Type | Description | Notes |
---|---|---|---|
pageable | Pageable | ||
results | List[Checkout] | ||
total | int |
from openapi_client.models.checkout_page import CheckoutPage
# TODO update the JSON string below
json = "{}"
# create an instance of CheckoutPage from a JSON string
checkout_page_instance = CheckoutPage.from_json(json)
# print the JSON string representation of the object
print(CheckoutPage.to_json())
# convert the object into a dict
checkout_page_dict = checkout_page_instance.to_dict()
# create an instance of CheckoutPage from a dict
checkout_page_from_dict = CheckoutPage.from_dict(checkout_page_dict)