For the complete documentation index, see llms.txt. This page is also available as Markdown.

Answers

To record an Answer to a Question, the BookingForm provides the following method

let answer = TextualAnwer("John", question: question)
bookingForm.addAnswer(answer)
Answer answer = TextualAnswer("John", question);
bookingForm.addAnswer(answer);

Last updated