Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.51 KB

InboundMessageCallbackMessage.md

File metadata and controls

41 lines (32 loc) · 1.51 KB

InboundMessageCallbackMessage

Inbound Message 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 [optional]
media List[str] [optional]
priority PriorityEnum [optional]

Example

from bandwidth.models.inbound_message_callback_message import InboundMessageCallbackMessage

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

# convert the object into a dict
inbound_message_callback_message_dict = inbound_message_callback_message_instance.to_dict()
# create an instance of InboundMessageCallbackMessage from a dict
inbound_message_callback_message_from_dict = InboundMessageCallbackMessage.from_dict(inbound_message_callback_message_dict)

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