Module Values_1.EvaluationAnswerDataSource

Information about answer data for a contact evaluation. Answer data must be either string, numeric, or not applicable.

Sourcetype nonrec t = {
  1. stringValue : EvaluationAnswerDataStringValue.t option;
    (*

    The string value for an answer in a contact evaluation.

    *)
  2. numericValue : EvaluationAnswerDataNumericValue.t option;
    (*

    The numeric value for an answer in a contact evaluation.

    *)
  3. stringValues : EvaluationAnswerDataStringValueList.t option;
    (*

    String values provided as answers to evaluation questions.

    *)
  4. dateTimeValue : Values_0.ISO8601Datetime.t option;
    (*

    Date and time value provided as an answer to an evaluation question.

    *)
  5. notApplicable : Values_0.Boolean.t option;
    (*

    The flag to mark the question as not applicable.

    *)
}
Sourceval make : ?stringValue:??? -> ?numericValue:??? -> ?stringValues:??? -> ?dateTimeValue:??? -> ?notApplicable:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Double of EvaluationAnswerDataNumericValue.t | `List of [> `String of EvaluationAnswerDataStringValue.t ] list | `String of EvaluationAnswerDataStringValue.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