Module Values_1.EvaluationNoteSource

Information about notes for a contact evaluation.

Sourcetype nonrec t = {
  1. value : EvaluationNoteString.t option;
    (*

    The note for an item (section or question) in a contact evaluation. Even though a note in an evaluation can have up to 3072 chars, there is also a limit on the total number of chars for all the notes in the evaluation combined. Assuming there are N questions in the evaluation being submitted, then the max char limit for all notes combined is N x 1024.

    *)
}
Sourceval make : ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EvaluationNoteString.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