Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.52 KB

File metadata and controls

38 lines (29 loc) · 1.52 KB

SupplyRequest

A Supply Object

Properties

Name Type Description Notes
pki_supply_id int The unique ID of the Supply [optional]
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
obj_supply_description MultilingualSupplyDescription
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

Example

from eZmaxApi.models.supply_request import SupplyRequest

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

# convert the object into a dict
supply_request_dict = supply_request_instance.to_dict()
# create an instance of SupplyRequest from a dict
supply_request_from_dict = SupplyRequest.from_dict(supply_request_dict)

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