Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

RbmActionDial

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.

Example

from bandwidth.models.rbm_action_dial import RbmActionDial

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

# convert the object into a dict
rbm_action_dial_dict = rbm_action_dial_instance.to_dict()
# create an instance of RbmActionDial from a dict
rbm_action_dial_from_dict = RbmActionDial.from_dict(rbm_action_dial_dict)

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