Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

CommonResponse.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

CommonResponse

All API response will inherit this based Response

Properties

Name Type Description Notes
obj_debug_payload CommonResponseObjDebugPayload
obj_debug CommonResponseObjDebug [optional]

Example

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_form_dict = common_response.from_dict(common_response_dict)

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