Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.1 KB

File metadata and controls

42 lines (33 loc) · 2.1 KB

MultiChannelAction

Properties

Name Type Description Notes
type RbmActionTypeEnum
text str Displayed text for user to click
postback_data bytearray Base64 payload the customer receives when the reply is clicked.
phone_number str The phone number to dial. Must be E164 format.
latitude float The latitude of the location. Must be in range [-90.000000, 90.000000].
longitude float The longitude of the location. Must be in range [-180.000000, 180.000000].
label str The label of the location. [optional]
title str The title of the event.
start_time datetime The start time of the event. Must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00.
end_time datetime The end time of the event. Must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00.
description str The description of the event. [optional]
url str The URL to open in browser. Must use http:// or https:// scheme.
application RbmOpenUrlEnum [optional]
webview_view_mode RbmWebViewEnum [optional]

Example

from bandwidth.models.multi_channel_action import MultiChannelAction

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

# convert the object into a dict
multi_channel_action_dict = multi_channel_action_instance.to_dict()
# create an instance of MultiChannelAction from a dict
multi_channel_action_from_dict = MultiChannelAction.from_dict(multi_channel_action_dict)

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