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
[optional] [default to 'food_products_not_elsewhere_specified']
specification
str
[optional] [default to 'average']
value
float
The value in the given unit
unit
str
[optional] [default to 'EUR']
Example
fromklimapi_python.models.food_food_products_not_elsewhere_specified_currencyimportFoodFoodProductsNotElsewhereSpecifiedCurrency# TODO update the JSON string belowjson="{}"# create an instance of FoodFoodProductsNotElsewhereSpecifiedCurrency from a JSON stringfood_food_products_not_elsewhere_specified_currency_instance=FoodFoodProductsNotElsewhereSpecifiedCurrency.from_json(json)
# print the JSON string representation of the objectprint(FoodFoodProductsNotElsewhereSpecifiedCurrency.to_json())
# convert the object into a dictfood_food_products_not_elsewhere_specified_currency_dict=food_food_products_not_elsewhere_specified_currency_instance.to_dict()
# create an instance of FoodFoodProductsNotElsewhereSpecifiedCurrency from a dictfood_food_products_not_elsewhere_specified_currency_from_dict=FoodFoodProductsNotElsewhereSpecifiedCurrency.from_dict(food_food_products_not_elsewhere_specified_currency_dict)