Note of the Ezmaxcustomer
| 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] |
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)