Skip to content

Latest commit

History

History
40 lines (31 loc) · 2.12 KB

File metadata and controls

40 lines (31 loc) · 2.12 KB

CheckoutLinkCalculated

Properties

NameTypeDescriptionNotes
payment_linkstrThe checkout link you can transfer to the customer.[optional]
payment_link_idstrThe checkout link id, used to make further calls to the API.[optional]
certificate_issued_atdatetimeWhen payment_received is true, timestamp of when the certificate was issued in ISO 8601 format (UTC)[optional]
certificate_urlstrWhen payment_received is true, the url to the certificate will be given.[optional]
certificate_pdfstrWhen payment_received is true, the url to the certificate pdf will be given.[optional]
order_idstrThe id of the order created for the checkout link.[optional]
kg_co2eintThe amount of kg CO2e.[optional]
pricefloatThe total of the compensation in your given currency incl. VAT.[optional]
currencystr[optional]
payment_receivedstrThis indicates if the order via the checkout link is already fulfilled or not.[optional]
projectProject[optional]
resultsList[CalculationResult]An array of the calculation results[optional]

Example

fromklimapi_python.models.checkout_link_calculatedimportCheckoutLinkCalculated# TODO update the JSON string belowjson="{}"# create an instance of CheckoutLinkCalculated from a JSON stringcheckout_link_calculated_instance=CheckoutLinkCalculated.from_json(json)
# print the JSON string representation of the objectprint(CheckoutLinkCalculated.to_json())
# convert the object into a dictcheckout_link_calculated_dict=checkout_link_calculated_instance.to_dict()
# create an instance of CheckoutLinkCalculated from a dictcheckout_link_calculated_from_dict=CheckoutLinkCalculated.from_dict(checkout_link_calculated_dict)

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