Module Values_0.ContactEvaluationSource

Information about the contact evaluations where the key is the FormId, which is a unique identifier for the form.

Sourcetype nonrec t = {
  1. formId : FormId.t option;
    (*

    The FormId of the contact evaluation.

    *)
  2. evaluationArn : EvaluationArn.t option;
    (*

    The Amazon Resource Name for the evaluation form. It is always present.

    *)
  3. status : Status.t option;
    (*

    The status of the evaluation.

    *)
  4. startTimestamp : string option;
    (*

    The date and time when the evaluation was started, in UTC time.

    *)
  5. endTimestamp : string option;
    (*

    The date and time when the evaluation was submitted, in UTC time.

    *)
  6. deleteTimestamp : string option;
    (*

    The date and time when the evaluation was deleted, in UTC time.

    *)
  7. exportLocation : ExportLocation.t option;
    (*

    The path where evaluation was exported.

    *)
}
Sourceval make : ?formId:??? -> ?evaluationArn:??? -> ?status:??? -> ?startTimestamp:??? -> ?endTimestamp:??? -> ?deleteTimestamp:??? -> ?exportLocation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FormId.t | `Timestamp of string ]) 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