You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The amount of kg CO2e calculated for the given product.
[optional]
Example
fromklimapi_python.models.cart_result_calculation_results_innerimportCartResultCalculationResultsInner# TODO update the JSON string belowjson="{}"# create an instance of CartResultCalculationResultsInner from a JSON stringcart_result_calculation_results_inner_instance=CartResultCalculationResultsInner.from_json(json)
# print the JSON string representation of the objectprint(CartResultCalculationResultsInner.to_json())
# convert the object into a dictcart_result_calculation_results_inner_dict=cart_result_calculation_results_inner_instance.to_dict()
# create an instance of CartResultCalculationResultsInner from a dictcart_result_calculation_results_inner_from_dict=CartResultCalculationResultsInner.from_dict(cart_result_calculation_results_inner_dict)