domain.yml:
utter_ask_info_or_loan:
- text: "Which one do you want to check out?"
buttons:
- title: "Other Information"
payload: "/SetSlots(info_or_loan=other)"
- title: "Loan Details"
payload: "/SetSlots(info_or_loan=loan)"
utter_ask_loan_choice:
- text: "Please select what you want to know more about bike loans"
buttons:
- title: "Loan Eligibility"
payload: "/SetSlots(loan_choice=eligibility)"
How can i make the payload from the button to not come in the chat as user input but rather go the next step after user clicking on the button?
Any solution provided to this is appreciated.