Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

MultilingualEzmaxcustomerNote

Note of the Ezmaxcustomer

Properties

Name Type Description Notes
t_ezmaxcustomer_note1 str A note added to an Ezmaxcaseactivity. [optional]
t_ezmaxcustomer_note2 str A note added to an Ezmaxcaseactivity. [optional]

Example

from eZmaxApi.models.multilingual_ezmaxcustomer_note import MultilingualEzmaxcustomerNote

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

# convert the object into a dict
multilingual_ezmaxcustomer_note_dict = multilingual_ezmaxcustomer_note_instance.to_dict()
# create an instance of MultilingualEzmaxcustomerNote from a dict
multilingual_ezmaxcustomer_note_from_dict = MultilingualEzmaxcustomerNote.from_dict(multilingual_ezmaxcustomer_note_dict)

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