Skip to content

Files

Latest commit

f386afd · Jun 2, 2024

History

History
31 lines (22 loc) · 1.06 KB

PageCheckoutTemplate.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

PageCheckoutTemplate

Properties

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

Example

from openapi_client.models.page_checkout_template import PageCheckoutTemplate

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

# convert the object into a dict
page_checkout_template_dict = page_checkout_template_instance.to_dict()
# create an instance of PageCheckoutTemplate from a dict
page_checkout_template_from_dict = PageCheckoutTemplate.from_dict(page_checkout_template_dict)

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