Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 967 Bytes

File metadata and controls

30 lines (24 loc) · 967 Bytes

Bandwidth::MultiChannelActionCalendarEvent

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.
title String The title of the event.
start_time Time The start time of the event.
end_time Time The end time of the event.
description String The description of the event. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::MultiChannelActionCalendarEvent.new(
  type: null,
  text: Hello world,
  postback_data: U0dWc2JHOGdkMjl5YkdRPQ==,
  title: Meeting with John,
  start_time: 2022-09-14T18:20:16Z,
  end_time: 2022-09-14T18:20:16Z,
  description: Discuss the new project
)