You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromcobo_waas2.models.retry_callback_message201_responseimportRetryCallbackMessage201Response# TODO update the JSON string belowjson="{}"# create an instance of RetryCallbackMessage201Response from a JSON stringretry_callback_message201_response_instance=RetryCallbackMessage201Response.from_json(json)
# print the JSON string representation of the objectprint(RetryCallbackMessage201Response.to_json())
# convert the object into a dictretry_callback_message201_response_dict=retry_callback_message201_response_instance.to_dict()
# create an instance of RetryCallbackMessage201Response from a dictretry_callback_message201_response_from_dict=RetryCallbackMessage201Response.from_dict(retry_callback_message201_response_dict)