Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.46 KB

MessageCallbackMessage.md

File metadata and controls

41 lines (32 loc) · 1.46 KB

MessageCallbackMessage

Message payload schema within a MessageCallback

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 [optional]
media List[str] Optional media, applicable only for mms [optional]
priority PriorityEnum [optional]

Example

from bandwidth.models.message_callback_message import MessageCallbackMessage

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

# convert the object into a dict
message_callback_message_dict = message_callback_message_instance.to_dict()
# create an instance of MessageCallbackMessage from a dict
message_callback_message_from_dict = MessageCallbackMessage.from_dict(message_callback_message_dict)

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