Module Values.ConformancePackComplianceSummarySource

Summary includes the name and status of the conformance pack.

Sourcetype nonrec t = {
  1. conformancePackName : ConformancePackName.t option;
    (*

    The name of the conformance pack name.

    *)
  2. conformancePackComplianceStatus : ConformancePackComplianceType.t option;
    (*

    The status of the conformance pack.

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