package ask

  1. Overview
  2. Docs
type questionnaire_id = string
type question_id = string
type t =
  1. | TextAnswerCreated of questionnaire_id * question_id * AnswerInput.text_answer
  2. | TextAnswerUpdated of questionnaire_id * question_id * AnswerInput.text_answer
  3. | AssetAnswerCreated of questionnaire_id * question_id * AnswerInput.asset_answer
  4. | AssetAnswerUpdated of questionnaire_id * question_id * AnswerInput.asset_answer
  5. | AssetAnswerDelete of questionnaire_id * question_id
val to_yojson : t -> Yojson.Safe.t
val pp : Stdlib.Format.formatter -> t -> unit
val equal : t -> t -> bool
val show : t -> string