/** * 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. */ import type { RbmActionTypeEnum } from './rbm-action-type-enum'; import type { RbmOpenUrlEnum } from './rbm-open-url-enum'; import type { RbmWebViewEnum } from './rbm-web-view-enum'; /** * @type RbmActionOpenUrl */ export interface RbmActionOpenUrl { 'type': RbmActionTypeEnum; /** * Displayed text for user to click */ 'text': string; /** * Base64 payload the customer receives when the reply is clicked. */ 'postbackData': string; /** * The URL to open in browser. Must use http:// or https:// scheme. */ 'url': string; 'application'?: RbmOpenUrlEnum; 'webviewViewMode'?: RbmWebViewEnum; }