Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.16 KB

InboundMessageCallback.md

File metadata and controls

34 lines (25 loc) · 1.16 KB

InboundMessageCallback

Inbound Message Callback

Properties

Name Type Description Notes
time datetime
type str
to str
description str
message InboundMessageCallbackMessage

Example

from bandwidth.models.inbound_message_callback import InboundMessageCallback

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

# convert the object into a dict
inbound_message_callback_dict = inbound_message_callback_instance.to_dict()
# create an instance of InboundMessageCallback from a dict
inbound_message_callback_from_dict = InboundMessageCallback.from_dict(inbound_message_callback_dict)

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