BotSharp/Platform.Dialogflow/Models/DialogflowIntentResponseParameter.cs

24 lines
711 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
2018-10-03 01:44:11 +00:00
namespace Platform.Dialogflow.Models
{
public class DialogflowIntentResponseParameter
{
2018-06-11 19:48:25 +00:00
public DialogflowIntentResponseParameter()
{
PromptList = new List<DialogflowIntentResponseParameterPrompt>();
}
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; }
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; }
}
}