| Name | Type | Description | Notes |
|---|
| order_id | str | | [optional] |
| status | str | The status of the order | [optional] |
| price | float | The total of the compensation in your given currency excl. VAT. | [optional] |
| currency | str | | [optional] |
| kg_co2e | int | The amount of kg CO2e. | [optional] |
| metadata | Dict[str, str] | Add additional queryable information to the order as key-value pairs | [optional] |
| project | Project | | [optional] |
fromklimapi_python.models.pending_orderimportPendingOrder# TODO update the JSON string belowjson="{}"# create an instance of PendingOrder from a JSON stringpending_order_instance=PendingOrder.from_json(json)
# print the JSON string representation of the objectprint(PendingOrder.to_json())
# convert the object into a dictpending_order_dict=pending_order_instance.to_dict()
# create an instance of PendingOrder from a dictpending_order_from_dict=PendingOrder.from_dict(pending_order_dict)[Back to Model list][Back to API list][Back to README]