Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 934 Bytes

FormMessage.md

File metadata and controls

23 lines (16 loc) · 934 Bytes

SunshineConversationsClient::FormMessage

Properties

Name Type Description Notes
type String The type of message. [default to 'form']
submitted Boolean Flag which states whether the form is submitted. [optional] [readonly]
block_chat_input Boolean true if the message should block the chat input on Web Messenger. [optional]
fields Array<FormMessageField> An array of objects representing fields associated with the message. Only present in form and formResponse messages.

Code Sample

require 'SunshineConversationsClient'

instance = SunshineConversationsClient::FormMessage.new(type: null,
                                 submitted: null,
                                 block_chat_input: null,
                                 fields: null)