/* 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 MultiChannelActionCalendarEvent */ export interface MultiChannelActionCalendarEvent { 'type': RbmActionTypeEnum; /** * Displayed text for user to click */ 'text': string; /** * Base64 payload the customer receives when the reply is clicked. */ 'postbackData': string; /** * The title of the event. */ 'title': string; /** * The start time of the event. Must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00. */ 'startTime': string; /** * The end time of the event. Must be a valid RFC-3339 value, e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00. */ 'endTime': string; /** * The description of the event. */ 'description'?: string; }