Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

MultilingualEzmaxcustomeruserNote

Note of the Ezmaxcustomeruser

Properties

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]

Example

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)

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