Values.AutomatedReasoningPolicyDefinitionVariableSourceRepresents a variable in an Automated Reasoning policy. Variables represent concepts that can have values assigned during natural language translation.
type nonrec t = {name : AutomatedReasoningPolicyDefinitionVariableName.t;The name of the variable. Use descriptive names that clearly indicate the concept being represented.
*)type_ : AutomatedReasoningPolicyDefinitionTypeName.t;The data type of the variable. Valid types include bool, int, real, enum, and custom types that you can provide.
*)description : AutomatedReasoningPolicyDefinitionVariableDescription.t;The description of the variable that explains what it represents and how users might refer to it. Clear and comprehensive descriptions are essential for accurate natural language translation.
*)}val make :
name:AutomatedReasoningPolicyDefinitionVariableName.t ->
type_:AutomatedReasoningPolicyDefinitionTypeName.t ->
description:AutomatedReasoningPolicyDefinitionVariableDescription.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of AutomatedReasoningPolicyDefinitionVariableName.t ])
list ]