| Name | Type | Description | Notes |
|---|---|---|---|
| checkout_links | List[CheckoutLink] | [optional] |
fromklimapi_python.models.checkout_linksimportCheckoutLinks# TODO update the JSON string belowjson="{}"# create an instance of CheckoutLinks from a JSON stringcheckout_links_instance=CheckoutLinks.from_json(json)
# print the JSON string representation of the objectprint(CheckoutLinks.to_json())
# convert the object into a dictcheckout_links_dict=checkout_links_instance.to_dict()
# create an instance of CheckoutLinks from a dictcheckout_links_from_dict=CheckoutLinks.from_dict(checkout_links_dict)