Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.47 KB

MessageFailedCallbackMessage.md

File metadata and controls

41 lines (32 loc) · 1.47 KB

MessageFailedCallbackMessage

Message Failed Callback Message Schema

Properties

Name Type Description Notes
id str
owner str
application_id str
time datetime
segment_count int
direction MessageDirectionEnum
to List[str]
var_from str
text str
tag str
media List[str] [optional]
priority PriorityEnum

Example

from bandwidth.models.message_failed_callback_message import MessageFailedCallbackMessage

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

# convert the object into a dict
message_failed_callback_message_dict = message_failed_callback_message_instance.to_dict()
# create an instance of MessageFailedCallbackMessage from a dict
message_failed_callback_message_from_dict = MessageFailedCallbackMessage.from_dict(message_failed_callback_message_dict)

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