Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.41 KB

File metadata and controls

34 lines (25 loc) · 1.41 KB

RbmActionViewLocation

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.
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]

Example

from bandwidth.models.rbm_action_view_location import RbmActionViewLocation

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

# convert the object into a dict
rbm_action_view_location_dict = rbm_action_view_location_instance.to_dict()
# create an instance of RbmActionViewLocation from a dict
rbm_action_view_location_from_dict = RbmActionViewLocation.from_dict(rbm_action_view_location_dict)

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