A Ezmaxcustomer Object
| Name | Type | Description | Notes |
|---|---|---|---|
| obj_ezmaxcustomer_note | MultilingualEzmaxcustomerNote | [optional] |
from eZmaxApi.models.ezmaxcustomer_request_patch import EzmaxcustomerRequestPatch
# TODO update the JSON string below
json = "{}"
# create an instance of EzmaxcustomerRequestPatch from a JSON string
ezmaxcustomer_request_patch_instance = EzmaxcustomerRequestPatch.from_json(json)
# print the JSON string representation of the object
print(EzmaxcustomerRequestPatch.to_json())
# convert the object into a dict
ezmaxcustomer_request_patch_dict = ezmaxcustomer_request_patch_instance.to_dict()
# create an instance of EzmaxcustomerRequestPatch from a dict
ezmaxcustomer_request_patch_from_dict = EzmaxcustomerRequestPatch.from_dict(ezmaxcustomer_request_patch_dict)