2018-03-21 21:07:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-03-28 22:08:49 +00:00
|
|
|
|
namespace BotSharp.Core.Adapters.Dialogflow
|
2018-03-21 21:07:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
public class DialogflowIntentResponseParameter
|
|
|
|
|
|
{
|
2018-06-11 19:48:25 +00:00
|
|
|
|
public DialogflowIntentResponseParameter()
|
|
|
|
|
|
{
|
|
|
|
|
|
PromptList = new List<DialogflowIntentResponseParameterPrompt>();
|
|
|
|
|
|
}
|
2018-03-21 21:07:43 +00:00
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
public bool Required { get; set; }
|
|
|
|
|
|
public string DataType { get; set; }
|
2018-06-07 05:53:38 +00:00
|
|
|
|
public string DefaultValue { get; set; }
|
2018-03-21 21:07:43 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
public bool IsList { get; set; }
|
2018-06-07 05:53:38 +00:00
|
|
|
|
|
|
|
|
|
|
public List<DialogflowIntentResponseParameterPrompt> PromptList { get; set; }
|
2018-03-21 21:07:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|