Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 920 Bytes

File metadata and controls

29 lines (20 loc) · 920 Bytes

CheckoutLinks

Properties

Name Type Description Notes
checkout_links List[CheckoutLink] [optional]

Example

from klimapi_python.models.checkout_links import CheckoutLinks

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

# convert the object into a dict
checkout_links_dict = checkout_links_instance.to_dict()
# create an instance of CheckoutLinks from a dict
checkout_links_from_dict = CheckoutLinks.from_dict(checkout_links_dict)

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