| Name | Type | Description | Notes |
|---|
| type | str | | |
| activity | str | Describe the individual factor | |
| specification | str | Specify the individual factor | |
| unit | str | Describe the unit used by the multiplier | |
| amount | int | The amount of kg CO2e you want to add to the calculation. | |
| multiplier | int | Multiplier for the given amount | [optional] [default to 1] |
fromklimapi_python.models.individual_factorimportIndividualFactor# TODO update the JSON string belowjson="{}"# create an instance of IndividualFactor from a JSON stringindividual_factor_instance=IndividualFactor.from_json(json)
# print the JSON string representation of the objectprint(IndividualFactor.to_json())
# convert the object into a dictindividual_factor_dict=individual_factor_instance.to_dict()
# create an instance of IndividualFactor from a dictindividual_factor_from_dict=IndividualFactor.from_dict(individual_factor_dict)[Back to Model list][Back to API list][Back to README]