Module Values.AutomatedReasoningPolicyBuildStepMessageSource

Represents a message generated during a build step, providing information about what happened or any issues encountered.

Sourcetype nonrec t = {
  1. message : String_.t option;
    (*

    The content of the message, describing what occurred during the build step.

    *)
  2. messageType : AutomatedReasoningPolicyBuildMessageType.t option;
    (*

    The type of message (e.g., INFO, WARNING, ERROR) indicating its severity and purpose.

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