/* tslint:disable */ /* eslint-disable */ /** * Bandwidth * Bandwidth\'s Communication APIs * * The version of the OpenAPI document: 1.0.0 * Contact: letstalk@bandwidth.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { RbmActionBase } from './rbm-action-base'; // May contain unused imports in some cases // @ts-ignore import type { RbmActionTypeEnum } from './rbm-action-type-enum'; /** * @type RbmActionViewLocation */ export interface RbmActionViewLocation { 'type': RbmActionTypeEnum; /** * Displayed text for user to click */ 'text': string; /** * Base64 payload the customer receives when the reply is clicked. */ 'postbackData': string; /** * The latitude of the location. Must be in range [-90.000000, 90.000000]. */ 'latitude': number; /** * The longitude of the location. Must be in range [-180.000000, 180.000000]. */ 'longitude': number; /** * The label of the location. */ 'label'?: string; }