Exemplo n.º 1
0
 public GoogleHelperResponse(IHelperIntent HelperIntent, String TextToSpeech, String DisplayText, bool ExpectUserResponse = true)
 {
     richResponse       = new GoogleRichResponse(TextToSpeech, DisplayText);
     systemIntent       = HelperIntent;
     expectUserResponse = ExpectUserResponse;
 }
Exemplo n.º 2
0
        public void AddHelperIntent(IHelperIntent Intent, String TextToSpeech, String DisplayText, bool ExpectUserResponse = true)
        {
            GoogleHelperResponse google = new GoogleHelperResponse(Intent, TextToSpeech, DisplayText, ExpectUserResponse);

            payload.Add("google", google);
        }