Need to read options in a checkbox from Slack using the Java SDK. Currently, description text objects inside an option are always coerced into a PlainTextObject even if their type property is set to mrkdwn.
Category (place an x in each of the [ ])
Requirements
Slack supports options with description text objects that use mrkdwn type. The SDK coerces them into a PlainTextObject, resulting in a lossy translation.
Consider changing the description field in the com.slack.api.model.block.composition.OptionObject to a com.slack.api.model.block.composition.TextObject so it can support either plain text or markdown.
Need to read options in a checkbox from Slack using the Java SDK. Currently, description text objects inside an option are always coerced into a PlainTextObject even if their type property is set to
mrkdwn.Category (place an
xin each of the[ ])Requirements
Slack supports options with description text objects that use
mrkdwntype. The SDK coerces them into a PlainTextObject, resulting in a lossy translation.Consider changing the description field in the
com.slack.api.model.block.composition.OptionObjectto acom.slack.api.model.block.composition.TextObjectso it can support either plain text or markdown.