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] |
require 'rasa-http-api'
instance = Rasa::HTTP::BotMessage.new(
recipient_id: null,
text: null,
image: null,
buttons: null,
attachement: null
)