IIntentRecognizerSetOptions interface   
Options used to configure an IntentRecognizerSet.
Properties
| intent | (optional) Minimum score needed to trigger the recognition of an intent. The default value is 0.1. | 
| process | (Optional) Maximum number of recognizers to evaluate at one time when recognizerOrder is parallel. | 
| recognize | (Optional) The order in which the configured recognizers should be evaluated. The default order is parallel. | 
| recognizers | (Optional) list of intent recognizers to run the users utterance through. | 
| stop | (Optional) If true the recognition will stop when a score of 1.0 is encountered. The default value is true. | 
Property Details
		intentThreshold
	 
	(optional) Minimum score needed to trigger the recognition of an intent. The default value is 0.1.
intentThreshold?: numberProperty Value
number
		processLimit
	 
	(Optional) Maximum number of recognizers to evaluate at one time when recognizerOrder is parallel.
processLimit?: numberProperty Value
number
		recognizeOrder
	 
	(Optional) The order in which the configured recognizers should be evaluated. The default order is parallel.
recognizeOrder?: RecognizeOrderProperty Value
recognizers
(Optional) list of intent recognizers to run the users utterance through.
recognizers?: IIntentRecognizer[]Property Value
		stopIfExactMatch
	  
	(Optional) If true the recognition will stop when a score of 1.0 is encountered. The default value is true.
stopIfExactMatch?: booleanProperty Value
boolean