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
fromklimapi_python.models.food_vegetable_oils_and_fats_currencyimportFoodVegetableOilsAndFatsCurrency# TODO update the JSON string belowjson="{}"# create an instance of FoodVegetableOilsAndFatsCurrency from a JSON stringfood_vegetable_oils_and_fats_currency_instance=FoodVegetableOilsAndFatsCurrency.from_json(json)
# print the JSON string representation of the objectprint(FoodVegetableOilsAndFatsCurrency.to_json())
# convert the object into a dictfood_vegetable_oils_and_fats_currency_dict=food_vegetable_oils_and_fats_currency_instance.to_dict()
# create an instance of FoodVegetableOilsAndFatsCurrency from a dictfood_vegetable_oils_and_fats_currency_from_dict=FoodVegetableOilsAndFatsCurrency.from_dict(food_vegetable_oils_and_fats_currency_dict)