A Ezmaxcustomeruser Object
| Name | Type | Description | Notes |
|---|---|---|---|
| obj_ezmaxcustomeruser_note | MultilingualEzmaxcustomeruserNote | [optional] |
from eZmaxApi.models.ezmaxcustomeruser_request_patch import EzmaxcustomeruserRequestPatch
# TODO update the JSON string below
json = "{}"
# create an instance of EzmaxcustomeruserRequestPatch from a JSON string
ezmaxcustomeruser_request_patch_instance = EzmaxcustomeruserRequestPatch.from_json(json)
# print the JSON string representation of the object
print(EzmaxcustomeruserRequestPatch.to_json())
# convert the object into a dict
ezmaxcustomeruser_request_patch_dict = ezmaxcustomeruser_request_patch_instance.to_dict()
# create an instance of EzmaxcustomeruserRequestPatch from a dict
ezmaxcustomeruser_request_patch_from_dict = EzmaxcustomeruserRequestPatch.from_dict(ezmaxcustomeruser_request_patch_dict)