Module Values.ProfileTemplateQuestionSource

A profile template question.

Sourcetype nonrec t = {
  1. questionId : QuestionId.t option;
  2. questionTitle : QuestionTitle.t option;
  3. questionDescription : QuestionDescription.t option;
  4. questionChoices : ProfileTemplateQuestionChoices.t option;
    (*

    The question choices.

    *)
  5. minSelectedChoices : MinSelectedProfileChoices.t option;
    (*

    The minimum number of choices selected.

    *)
  6. maxSelectedChoices : MaxSelectedProfileChoices.t option;
    (*

    The maximum number of choices selected.

    *)
}
Sourceval make : ?questionId:??? -> ?questionTitle:??? -> ?questionDescription:??? -> ?questionChoices:??? -> ?minSelectedChoices:??? -> ?maxSelectedChoices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MinSelectedProfileChoices.t | `List of [> `Structure of (string * [> `String of ChoiceId.t ]) list ] list | `String of QuestionId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t