A Supply List Element
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_supply_id | int | The unique ID of the Supply | |
| fki_glaccount_id | int | The unique ID of the Glaccount | [optional] |
| fki_glaccountcontainer_id | int | The unique ID of the Glaccountcontainer | [optional] |
| fki_variableexpense_id | int | The unique ID of the Variableexpense | |
| s_supply_code | str | The code of the Supply | |
| s_supply_description_x | str | The description of the Supply in the language of the requester | |
| d_supply_unitprice | str | The unit price of the Supply | |
| b_supply_isactive | bool | Whether the supply is active or not | |
| b_supply_variableprice | bool | Whether if the price is variable | |
| s_glaccount_description_x | str | The Description for the Glaccount in the language of the requester | [optional] |
| s_glaccountcontainer_longdescription_x | str | The Description for the Glaccountcontainer in the language of the requester | [optional] |
| s_variableexpense_description_x | str | The description of the Variableexpense in the language of the requester | [optional] |
from eZmaxApi.models.supply_list_element import SupplyListElement
# TODO update the JSON string below
json = "{}"
# create an instance of SupplyListElement from a JSON string
supply_list_element_instance = SupplyListElement.from_json(json)
# print the JSON string representation of the object
print(SupplyListElement.to_json())
# convert the object into a dict
supply_list_element_dict = supply_list_element_instance.to_dict()
# create an instance of SupplyListElement from a dict
supply_list_element_from_dict = SupplyListElement.from_dict(supply_list_element_dict)