All API response will inherit this based Response
| Name | Type | Description | Notes |
|---|---|---|---|
| obj_debug_payload | CommonResponseObjDebugPayload | ||
| obj_debug | CommonResponseObjDebug | [optional] |
from eZmaxApi.models.common_response import CommonResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CommonResponse from a JSON string
common_response_instance = CommonResponse.from_json(json)
# print the JSON string representation of the object
print(CommonResponse.to_json())
# convert the object into a dict
common_response_dict = common_response_instance.to_dict()
# create an instance of CommonResponse from a dict
common_response_from_dict = CommonResponse.from_dict(common_response_dict)