| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// OdinsSmartRobotAskResponse.
- /// </summary>
- public class OdinsSmartRobotAskResponse : TopResponse
- {
- /// <summary>
- /// 接口返回model
- /// </summary>
- [XmlElement("result")]
- public ResultDomain Result { get; set; }
- /// <summary>
- /// ResultDomain Data Structure.
- /// </summary>
- [Serializable]
- public class ResultDomain : TopObject
- {
- /// <summary>
- /// 问题答案
- /// </summary>
- [XmlElement("data")]
- public string Data { get; set; }
-
- /// <summary>
- /// 错误码
- /// </summary>
- [XmlElement("error_code")]
- public long ErrorCode { get; set; }
-
- /// <summary>
- /// 错误信息
- /// </summary>
- [XmlElement("error_msg")]
- public string ErrorMsg { get; set; }
-
- /// <summary>
- /// 是否成功
- /// </summary>
- [XmlElement("success")]
- public bool Success { get; set; }
- }
- }
- }
|