Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

RbmActionBase

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.

Example

from bandwidth.models.rbm_action_base import RbmActionBase

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

# convert the object into a dict
rbm_action_base_dict = rbm_action_base_instance.to_dict()
# create an instance of RbmActionBase from a dict
rbm_action_base_from_dict = RbmActionBase.from_dict(rbm_action_base_dict)

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