123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #region Apache License Version 2.0
- #endregion Apache License Version 2.0
- namespace Senparc.Weixin.MP.AdvancedAPIs.Semantic
- {
-
-
-
- public class Semantic_TravelResult : BaseSemanticResultJson
- {
- public Semantic_Travel semantic { get; set; }
- }
- public class Semantic_Travel : BaseSemanticIntent
- {
- public Semantic_Details_Travel details { get; set; }
-
-
-
-
-
- public string intent { get; set; }
- }
- public class Semantic_Details_Travel
- {
-
-
-
- public Semantic_Location location { get; set; }
-
-
-
- public string spot { get; set; }
-
-
-
- public Semantic_DateTime datetime { get; set; }
-
-
-
- public string tag { get; set; }
-
-
-
- public int category { get; set; }
- }
- }
|