Module Values.AutomatedReasoningPolicyBuildStepSource

Represents a single step in the policy build process, containing context about what was being processed and any messages or results.

Sourcetype nonrec t = {
  1. context : AutomatedReasoningPolicyBuildStepContext.t option;
    (*

    Contextual information about what was being processed during this build step, such as the type of operation or the source material being analyzed.

    *)
  2. priorElement : AutomatedReasoningPolicyDefinitionElement.t option;
    (*

    Reference to the previous element or step in the build process, helping to trace the sequence of operations.

    *)
  3. messages : AutomatedReasoningPolicyBuildStepMessageList.t option;
    (*

    A list of messages generated during this build step, including informational messages, warnings, and error details.

    *)
}
Sourceval make : ?context:??? -> ?priorElement:??? -> ?messages:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list | `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeValueName.t ]) list ] list | `String of AutomatedReasoningPolicyDefinitionVariableName.t | `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of AutomatedReasoningPolicyDefinitionTypeValueName.t ]) list ] list | `String of AutomatedReasoningPolicyDefinitionTypeName.t ]) list ]) list ]) list ]) list ]) 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