Skip to content

Latest commit

History

History
36 lines (27 loc) · 1.54 KB

File metadata and controls

36 lines (27 loc) · 1.54 KB

PendingOrderCalculated

Properties

NameTypeDescriptionNotes
order_idstr[optional]
statusstrThe status of the order[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]

Example

fromklimapi_python.models.pending_order_calculatedimportPendingOrderCalculated# TODO update the JSON string belowjson="{}"# create an instance of PendingOrderCalculated from a JSON stringpending_order_calculated_instance=PendingOrderCalculated.from_json(json)
# print the JSON string representation of the objectprint(PendingOrderCalculated.to_json())
# convert the object into a dictpending_order_calculated_dict=pending_order_calculated_instance.to_dict()
# create an instance of PendingOrderCalculated from a dictpending_order_calculated_from_dict=PendingOrderCalculated.from_dict(pending_order_calculated_dict)

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