Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 733 Bytes

BotMessage.md

File metadata and controls

26 lines (20 loc) · 733 Bytes

Rasa::HTTP::BotMessage

Properties

Name Type Description Notes
recipient_id String Id of the message receiver [optional]
text String Message [optional]
image String Image URL [optional]
buttons Array<BotMessageButtonsInner> Quick reply buttons [optional]
attachement Array<BotMessageAttachementInner> Additional information [optional]

Example

require 'rasa-http-api'

instance = Rasa::HTTP::BotMessage.new(
  recipient_id: null,
  text: null,
  image: null,
  buttons: null,
  attachement: null
)