Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 956 Bytes

CheckoutPage.md

File metadata and controls

31 lines (22 loc) · 956 Bytes

CheckoutPage

Properties

Name Type Description Notes
pageable Pageable
results List[Checkout]
total int

Example

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)

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