Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

MultilingualVariableexpenseDescription.md

File metadata and controls

31 lines (22 loc) · 1.39 KB

MultilingualVariableexpenseDescription

The description of the Variableexpense

Properties

Name Type Description Notes
s_variableexpense_description1 str The description of the Variableexpense in French [optional]
s_variableexpense_description2 str The description of the Variableexpense in English [optional]

Example

from eZmaxApi.models.multilingual_variableexpense_description import MultilingualVariableexpenseDescription

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

# convert the object into a dict
multilingual_variableexpense_description_dict = multilingual_variableexpense_description_instance.to_dict()
# create an instance of MultilingualVariableexpenseDescription from a dict
multilingual_variableexpense_description_from_dict = MultilingualVariableexpenseDescription.from_dict(multilingual_variableexpense_description_dict)

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