Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

File metadata and controls

33 lines (24 loc) · 1.28 KB

MaterialUseFurnitureCurrency

Properties

Name Type Description Notes
type str
activity str [optional] [default to 'furniture']
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.material_use_furniture_currency import MaterialUseFurnitureCurrency

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

# convert the object into a dict
material_use_furniture_currency_dict = material_use_furniture_currency_instance.to_dict()
# create an instance of MaterialUseFurnitureCurrency from a dict
material_use_furniture_currency_from_dict = MaterialUseFurnitureCurrency.from_dict(material_use_furniture_currency_dict)

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