Values.AutomatedReasoningPolicyAddVariableAnnotationSourceAn annotation for adding a new variable to an Automated Reasoning policy, which can be used in rule expressions.
type nonrec t = {name : AutomatedReasoningPolicyDefinitionVariableName.t;The name of the new variable. This name will be used to reference the variable in rule expressions.
*)type_ : AutomatedReasoningPolicyDefinitionTypeName.t;The type of the variable, which can be a built-in type (like string or number) or a custom type defined in the policy.
*)description : AutomatedReasoningPolicyDefinitionVariableDescription.t;A description of what the variable represents and how it should be used in rules.
*)}val make :
name:AutomatedReasoningPolicyDefinitionVariableName.t ->
type_:AutomatedReasoningPolicyDefinitionTypeName.t ->
description:AutomatedReasoningPolicyDefinitionVariableDescription.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of AutomatedReasoningPolicyDefinitionVariableName.t ])
list ]