Module Values.ProfileTemplateSource

The profile template.

Sourcetype nonrec t = {
  1. templateName : ProfileName.t option;
    (*

    The name of the profile template.

    *)
  2. templateQuestions : TemplateQuestions.t option;
    (*

    Profile template questions.

    *)
  3. createdAt : Timestamp.t option;
  4. updatedAt : Timestamp.t option;
}
Sourceval make : ?templateName:??? -> ?templateQuestions:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Integer of MinSelectedProfileChoices.t | `List of [> `Structure of (string * [> `String of ChoiceId.t ]) list ] list | `String of QuestionId.t ]) list ] list | `String of ProfileName.t | `Timestamp of Timestamp.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