BotSharp/BotSharp.Platform.Dialogflow/Models/DialogflowIntent.cs
2018-10-28 21:16:55 -05:00

25 lines
755 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Dialogflow.Models
{
public class DialogflowIntent
{
public string Id { get; set; }
public string Name { get; set; }
public bool Auto { get; set; }
/// <summary>
/// Input Contexts
/// </summary>
public List<String> ContextList { get; set; }
public List<DialogflowIntentExpression> UserSays { get; set; }
public List<DialogflowIntentResponse> Responses { get; set; }
public int Priority { get; set; }
public bool WebhookUsed { get; set; }
public bool FallbackIntent { get; set; }
public List<DialogflowIntentEvent> Events { get; set; }
}
}