Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.88 KB

File metadata and controls

39 lines (30 loc) · 1.88 KB

CheckoutLink

Properties

Name Type Description Notes
payment_link str The checkout link you can transfer to the customer. [optional]
payment_link_id str The checkout link id, used to make further calls to the API. [optional]
certificate_issued_at datetime When payment_received is true, timestamp of when the certificate was issued in ISO 8601 format (UTC) [optional]
certificate_url str When payment_received is true, the url to the certificate will be given. [optional]
certificate_pdf str When payment_received is true, the url to the certificate pdf will be given. [optional]
order_id str The id of the order created for the checkout link. [optional]
kg_co2e int The amount of kg CO2e. [optional]
price float The total of the compensation in your given currency incl. VAT. [optional]
currency str [optional]
payment_received str This indicates if the order via the checkout link is already fulfilled or not. [optional]
project Project [optional]

Example

from klimapi_python.models.checkout_link import CheckoutLink

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

# convert the object into a dict
checkout_link_dict = checkout_link_instance.to_dict()
# create an instance of CheckoutLink from a dict
checkout_link_from_dict = CheckoutLink.from_dict(checkout_link_dict)

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