Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

CommonResponseWarning.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

CommonResponseWarning

Generic Warning Message

Properties

Name Type Description Notes
s_warning_message str More detail about the warning
e_warning_code str The warning code. See documentation for valid values

Example

from eZmaxApi.models.common_response_warning import CommonResponseWarning

# TODO update the JSON string below
json = "{}"
# create an instance of CommonResponseWarning from a JSON string
common_response_warning_instance = CommonResponseWarning.from_json(json)
# print the JSON string representation of the object
print(CommonResponseWarning.to_json())

# convert the object into a dict
common_response_warning_dict = common_response_warning_instance.to_dict()
# create an instance of CommonResponseWarning from a dict
common_response_warning_form_dict = common_response_warning.from_dict(common_response_warning_dict)

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