Note of the Ezmaxcustomeruser
| Name | Type | Description | Notes |
|---|---|---|---|
| t_ezmaxcustomeruser_note1 | str | A note added to an Ezmaxcaseactivity. | [optional] |
| t_ezmaxcustomeruser_note2 | str | A note added to an Ezmaxcaseactivity. | [optional] |
from eZmaxApi.models.multilingual_ezmaxcustomeruser_note import MultilingualEzmaxcustomeruserNote
# TODO update the JSON string below
json = "{}"
# create an instance of MultilingualEzmaxcustomeruserNote from a JSON string
multilingual_ezmaxcustomeruser_note_instance = MultilingualEzmaxcustomeruserNote.from_json(json)
# print the JSON string representation of the object
print(MultilingualEzmaxcustomeruserNote.to_json())
# convert the object into a dict
multilingual_ezmaxcustomeruser_note_dict = multilingual_ezmaxcustomeruser_note_instance.to_dict()
# create an instance of MultilingualEzmaxcustomeruserNote from a dict
multilingual_ezmaxcustomeruser_note_from_dict = MultilingualEzmaxcustomeruserNote.from_dict(multilingual_ezmaxcustomeruser_note_dict)