Just starting to use the Forms Service in Google Apps Script. Need to direct the form to take the user to a specific page depending on the answer that is given. Here's my current code
form.addMultipleChoiceItem()
.setTitle('What would you like to do?')
.setRequired(true)
.setChoiceValues(['Request a new reservation.','Change the date or number of tickets for an existing reservation.'])
Now, I've found this section in the documentation: Enum PageNavicationType
But they don't example the use of Go_To_Page. Also the creation of the ChoiceValues is wonky to me.
Anyone out there worked this out?