Module Values.AssessmentReportMetadataSource

The metadata objects that are associated with the specified assessment report.

Sourcetype nonrec t = {
  1. id : UUID.t option;
    (*

    The unique identifier for the assessment report.

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

    The name of the assessment report.

    *)
  3. description : AssessmentReportDescription.t option;
    (*

    The description of the assessment report.

    *)
  4. assessmentId : UUID.t option;
    (*

    The unique identifier for the associated assessment.

    *)
  5. assessmentName : AssessmentName.t option;
    (*

    The name of the associated assessment.

    *)
  6. author : Username.t option;
    (*

    The name of the user who created the assessment report.

    *)
  7. status : AssessmentReportStatus.t option;
    (*

    The current status of the assessment report.

    *)
  8. creationTime : Timestamp.t option;
    (*

    Specifies when the assessment report was created.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?description:??? -> ?assessmentId:??? -> ?assessmentName:??? -> ?author:??? -> ?status:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.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