Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

VariableexpenseResponse.md

File metadata and controls

34 lines (25 loc) · 1.47 KB

VariableexpenseResponse

A Variableexpense Object

Properties

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]

Example

from eZmaxApi.models.variableexpense_response import VariableexpenseResponse

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

# convert the object into a dict
variableexpense_response_dict = variableexpense_response_instance.to_dict()
# create an instance of VariableexpenseResponse from a dict
variableexpense_response_form_dict = variableexpense_response.from_dict(variableexpense_response_dict)

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