Module Values.AutomatedReasoningPolicyBuildResultAssetManifestEntrySource

Represents a single entry in the asset manifest, describing one artifact produced by the build workflow.

Sourcetype nonrec t = {
  1. assetType : AutomatedReasoningPolicyBuildResultAssetType.t option;
    (*

    The type of asset (e.g., BUILD_LOG, QUALITY_REPORT, POLICY_DEFINITION, GENERATED_TEST_CASES, POLICY_SCENARIOS, FIDELITY_REPORT, ASSET_MANIFEST, SOURCE_DOCUMENT).

    *)
  2. assetName : AutomatedReasoningPolicyBuildResultAssetName.t option;
    (*

    A human-readable name for the asset, if applicable. This helps identify specific documents or reports within the workflow results.

    *)
  3. assetId : AutomatedReasoningPolicyBuildResultAssetId.t option;
    (*

    A unique identifier for the asset, if applicable. Use this ID when requesting specific assets through the API.

    *)
}
Sourceval make : ?assetType:??? -> ?assetName:??? -> ?assetId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AutomatedReasoningPolicyBuildResultAssetName.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