Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

FoodMeatProductsPorkCurrency

Properties

Name Type Description Notes
type str
activity str [optional] [default to 'meat_products_pork']
specification str [optional] [default to 'average']
value float The value in the given unit
unit str [optional] [default to 'EUR']

Example

from klimapi_python.models.food_meat_products_pork_currency import FoodMeatProductsPorkCurrency

# TODO update the JSON string below
json = "{}"
# create an instance of FoodMeatProductsPorkCurrency from a JSON string
food_meat_products_pork_currency_instance = FoodMeatProductsPorkCurrency.from_json(json)
# print the JSON string representation of the object
print(FoodMeatProductsPorkCurrency.to_json())

# convert the object into a dict
food_meat_products_pork_currency_dict = food_meat_products_pork_currency_instance.to_dict()
# create an instance of FoodMeatProductsPorkCurrency from a dict
food_meat_products_pork_currency_from_dict = FoodMeatProductsPorkCurrency.from_dict(food_meat_products_pork_currency_dict)

[Back to Model list] [Back to API list] [Back to README]