How from_intent slot mapping type is actually supposed to be used?

Nevermind. After trying a while, it seems you can define multiple type elements. So, for example to map to a bool slot, you could do something like:

forms:
  yes_no_form:
    bool_slot:
    - type: from_intent
      value: true
      intent: affirm
    - type: from_intent
      value: false
      intent: deny

Hope it helps someone.

1 Like