A Variableexpense Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_variableexpense_id | int | The unique ID of the Variableexpense | |
| s_variableexpense_code | str | The code of the Variableexpense | [optional] |
| obj_variableexpense_description | MultilingualVariableexpenseDescription | ||
| e_variableexpense_taxable | FieldEVariableexpenseTaxable | [optional] | |
| b_variableexpense_isactive | bool | Whether the variableexpense is active or not | [optional] |
from eZmaxApi.models.variableexpense_response_compound import VariableexpenseResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of VariableexpenseResponseCompound from a JSON string
variableexpense_response_compound_instance = VariableexpenseResponseCompound.from_json(json)
# print the JSON string representation of the object
print(VariableexpenseResponseCompound.to_json())
# convert the object into a dict
variableexpense_response_compound_dict = variableexpense_response_compound_instance.to_dict()
# create an instance of VariableexpenseResponseCompound from a dict
variableexpense_response_compound_from_dict = VariableexpenseResponseCompound.from_dict(variableexpense_response_compound_dict)