2018-10-03 01:44:11 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2018-03-21 21:07:43 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-10-03 01:44:11 +00:00
|
|
|
|
namespace Platform.Dialogflow.Models
|
2018-03-21 21:07:43 +00:00
|
|
|
|
{
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
|
public class QuestionMetadata
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("timezone")]
|
|
|
|
|
|
public string Timezone { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("lang")]
|
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("sessionId")]
|
|
|
|
|
|
internal string SessionId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("entities")]
|
2018-05-22 00:39:33 +00:00
|
|
|
|
public List<EntityType> Entities { get; set; }
|
2018-03-21 21:07:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|