Skip to content

Latest commit

History

History
40 lines (31 loc) · 1.73 KB

File metadata and controls

40 lines (31 loc) · 1.73 KB

OrderCalculated

Properties

NameTypeDescriptionNotes
order_idstr[optional]
statusstrThe status of the order[optional]
certificate_issued_atdatetimeTimestamp of when the certificate was issued in ISO 8601 format (UTC)[optional]
certificate_urlstr[optional]
certificate_pdfstr[optional]
pricefloatThe total of the compensation in your given currency excl. VAT.[optional]
currencystr[optional]
kg_co2eintThe amount of kg CO2e.[optional]
metadataDict[str, str]Add additional queryable information to the order as key-value pairs[optional]
projectProject[optional]
resultsList[CalculationResult]An array of the calculation results[optional]
recipientOrderRecipient[optional]

Example

fromklimapi_python.models.order_calculatedimportOrderCalculated# TODO update the JSON string belowjson="{}"# create an instance of OrderCalculated from a JSON stringorder_calculated_instance=OrderCalculated.from_json(json)
# print the JSON string representation of the objectprint(OrderCalculated.to_json())
# convert the object into a dictorder_calculated_dict=order_calculated_instance.to_dict()
# create an instance of OrderCalculated from a dictorder_calculated_from_dict=OrderCalculated.from_dict(order_calculated_dict)

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