BotSharp/Platform.Articulate/Models/AgentModel.cs

34 lines
753 B
C#
Raw Normal View History

2018-09-28 00:49:43 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Platform.Articulate.Models
2018-09-28 00:49:43 +00:00
{
public class AgentModel
{
public string Id { get; set; }
2018-09-28 00:49:43 +00:00
public string Status { get; set; }
public string Timezone { get; set; }
public string Language { get; set; }
public string AgentName { get; set; }
public bool UseWebhook { get; set; }
public string Description { get; set; }
public bool UsePostFormat { get; set; }
public bool ExtraTrainingData { get; set; }
public List<String> FallbackResponses { get; set; }
public bool EnableModelsPerDomain { get; set; }
public decimal DomainClassifierThreshold { get; set; }
}
}