Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

MessageFailedCallback.md

File metadata and controls

35 lines (26 loc) · 1.17 KB

MessageFailedCallback

Message Failed Callback

Properties

Name Type Description Notes
time datetime
type str
to str
description str
message MessageFailedCallbackMessage
error_code int

Example

from bandwidth.models.message_failed_callback import MessageFailedCallback

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

# convert the object into a dict
message_failed_callback_dict = message_failed_callback_instance.to_dict()
# create an instance of MessageFailedCallback from a dict
message_failed_callback_from_dict = MessageFailedCallback.from_dict(message_failed_callback_dict)

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