| Name | Type | Description | Notes |
|---|
| kg_co2e | float | The calculated Amount of CO2 in Kilogram. | [optional] |
| type | str | The type of the calculation | [optional] |
| activity | str | The activity of the calculation | [optional] |
| specification | str | The specification of the calculation | [optional] |
| detail | str | The detail of the calculation | [optional] |
| value | float | The value of the calculation | [optional] |
| unit | str | The unit of the calculation | [optional] |
| emission_factor_id | str | The unique identifier of the emission factor the calculation is based on | [optional] |
| emission_factor_last_updated | str | ISO 8601 formatted timestamp of the latest update for the given emission factor | [optional] |
fromklimapi_python.models.calculation_resultimportCalculationResult# TODO update the JSON string belowjson="{}"# create an instance of CalculationResult from a JSON stringcalculation_result_instance=CalculationResult.from_json(json)
# print the JSON string representation of the objectprint(CalculationResult.to_json())
# convert the object into a dictcalculation_result_dict=calculation_result_instance.to_dict()
# create an instance of CalculationResult from a dictcalculation_result_from_dict=CalculationResult.from_dict(calculation_result_dict)[Back to Model list][Back to API list][Back to README]