Message Failed Callback
Name | Type | Description | Notes |
---|---|---|---|
time | datetime | ||
type | str | ||
to | str | ||
description | str | ||
message | MessageFailedCallbackMessage | ||
error_code | int |
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)