Or statement with slot_was_set

My task is to basically set multiple slot values in a custom_action.

But the documentation says if any custom_action is setting a slot, I should add the slot event in the story right after custom_action call using slot_was_set. The example available explains how to do this using only one slot.

Slot_was_set:

  • slot:value

My problem is that the custom_action will fill the slot in runtime so I do not know the ‘value’ to put under slot_was_set while writing the story. This is the reason I was trying to use OR statement. So that I can put all possible values of ‘value’ under the custom_action call in the story.