SunshineConversationsClient::FormResponseMessage

August 27, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
typeStringThe type of message.[default to 'formResponse']
fieldsArray<FormResponseMessageField>Array of field objects that contain the submitted fields.
text_fallbackStringA string containing the `label: value` of all fields, each separated by a newline character.[optional][readonly]

Example

require 'sunshine-conversations-client'

instance = SunshineConversationsClient::FormResponseMessage.new(
  type: null,
  fields: null,
  text_fallback: null
)