Module Values.AssessmentValidationSource

Contains information about a specific validation test performed during a directory assessment.

Sourcetype nonrec t = {
  1. category : AssessmentValidationCategory.t option;
    (*

    The category of the validation test.

    *)
  2. name : AssessmentValidationName.t option;
    (*

    The name of the specific validation test performed within the category.

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

    The result status of the validation test. Valid values include SUCCESS, FAILED, PENDING, and IN_PROGRESS.

    *)
  4. statusCode : AssessmentValidationStatusCode.t option;
    (*

    A detailed status code providing additional information about the validation result.

    *)
  5. statusReason : AssessmentValidationStatusReason.t option;
    (*

    A human-readable description of the validation result, including any error details or recommendations.

    *)
  6. startTime : AssessmentValidationTimeStamp.t option;
    (*

    The date and time when the validation test was started.

    *)
  7. lastUpdateDateTime : AssessmentValidationTimeStamp.t option;
    (*

    The date and time when the validation test was completed or last updated.

    *)
}
Sourceval make : ?category:??? -> ?name:??? -> ?status:??? -> ?statusCode:??? -> ?statusReason:??? -> ?startTime:??? -> ?lastUpdateDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AssessmentValidationCategory.t | `Timestamp of AssessmentValidationTimeStamp.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