Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NluDetectionRequest" /> class.
 /// </summary>
 /// <param name="Input">The input subject to NLU detection. (required).</param>
 /// <param name="Context">The context for the input to NLU detection..</param>
 public NluDetectionRequest(NluDetectionInput Input = null, NluDetectionContext Context = null)
 {
     this.Input   = Input;
     this.Context = Context;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="NluDetectionResponse" /> class.
 /// </summary>
 /// <param name="Output">Output.</param>
 /// <param name="Input">Input.</param>
 public NluDetectionResponse(NluDetectionOutput Output = null, NluDetectionInput Input = null)
 {
     this.Output = Output;
     this.Input  = Input;
 }