Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.56 KB

VariableexpenseRequestCompound.md

File metadata and controls

34 lines (25 loc) · 1.56 KB

VariableexpenseRequestCompound

A Variableexpense Object and children

Properties

Name Type Description Notes
pki_variableexpense_id int The unique ID of the Variableexpense [optional]
s_variableexpense_code str The code of the Variableexpense
obj_variableexpense_description MultilingualVariableexpenseDescription
e_variableexpense_taxable FieldEVariableexpenseTaxable
b_variableexpense_isactive bool Whether the variableexpense is active or not

Example

from eZmaxApi.models.variableexpense_request_compound import VariableexpenseRequestCompound

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

# convert the object into a dict
variableexpense_request_compound_dict = variableexpense_request_compound_instance.to_dict()
# create an instance of VariableexpenseRequestCompound from a dict
variableexpense_request_compound_from_dict = VariableexpenseRequestCompound.from_dict(variableexpense_request_compound_dict)

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