Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 819 Bytes

File metadata and controls

28 lines (22 loc) · 819 Bytes

Bandwidth::RbmActionViewLocation

Properties

Name Type Description Notes
type RbmActionTypeEnum
text String Displayed text for user to click
postback_data String Base64 payload the customer receives when the reply is clicked.
latitude Float The latitude of the location.
longitude Float The longitude of the location.
label String The label of the location. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::RbmActionViewLocation.new(
  type: null,
  text: Hello world,
  postback_data: U0dWc2JHOGdkMjl5YkdRPQ==,
  latitude: 37.7749,
  longitude: -122.4194,
  label: San Francisco
)