Values.AutomatedReasoningPolicyUpdateVariableAnnotationSourceAn annotation for modifying an existing variable in an Automated Reasoning policy.
type nonrec t = {name : AutomatedReasoningPolicyDefinitionVariableName.t;The current name of the variable to update.
*)newName : AutomatedReasoningPolicyDefinitionVariableName.t option;The new name for the variable, if you want to rename it. If not provided, the name remains unchanged.
*)description : AutomatedReasoningPolicyDefinitionVariableDescription.t option;The new description for the variable, replacing the previous description.
*)}val make :
?newName:??? ->
?description:??? ->
name:AutomatedReasoningPolicyDefinitionVariableName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of AutomatedReasoningPolicyDefinitionVariableName.t ])
list ]