Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.3 KB

File metadata and controls

29 lines (20 loc) · 1.3 KB

RetryCallbackMessage201Response

Properties

Name Type Description Notes
retried bool Whether the callback message has been successfully resent: - `true`: The callback message has been successfully resent. - `false`: The callback message has not been successfully resent. [optional]

Example

from cobo_waas2.models.retry_callback_message201_response import RetryCallbackMessage201Response

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

# convert the object into a dict
retry_callback_message201_response_dict = retry_callback_message201_response_instance.to_dict()
# create an instance of RetryCallbackMessage201Response from a dict
retry_callback_message201_response_from_dict = RetryCallbackMessage201Response.from_dict(retry_callback_message201_response_dict)

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