Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

CheckoutTemplatePage.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

CheckoutTemplatePage

Properties

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

Example

from openapi_client.models.checkout_template_page import CheckoutTemplatePage

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

# convert the object into a dict
checkout_template_page_dict = checkout_template_page_instance.to_dict()
# create an instance of CheckoutTemplatePage from a dict
checkout_template_page_from_dict = CheckoutTemplatePage.from_dict(checkout_template_page_dict)

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