Versions in this module Expand all Collapse all v0 v0.502.7 Jun 17, 2026 v0.502.6 Jun 17, 2026 Changes in this version + type Answer struct + OtherText string + QuestionID string + Selected []string + type AskResponse struct + Answers []Answer + Cancelled bool + type CreateAskRequest struct + Questions []Question + SessionID string + type Option struct + Description string + Label string + type Question struct + Header string + ID string + MultiSelect bool + Options []Option + Question string + type QuestionRequest struct + ID string + Questions []Question + SessionID string + type Service interface + Ask func(req CreateAskRequest) AskResponse + Cancel func(id string) + PendingRequests func(sessionID string) []QuestionRequest + Respond func(id string, resp AskResponse) + func NewService() Service