WakandaAicameraResponse.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// WakandaAicameraResponse.
  8. /// </summary>
  9. public class WakandaAicameraResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 返回信息
  13. /// </summary>
  14. [XmlElement("result")]
  15. public GetDeviceSecretFacadeDomain Result { get; set; }
  16. /// <summary>
  17. /// GetDeviceSecretFacadeDomain Data Structure.
  18. /// </summary>
  19. [Serializable]
  20. public class GetDeviceSecretFacadeDomain : TopObject
  21. {
  22. /// <summary>
  23. /// 描述
  24. /// </summary>
  25. [XmlElement("data")]
  26. public string Data { get; set; }
  27. /// <summary>
  28. /// 错误码
  29. /// </summary>
  30. [XmlElement("err_code")]
  31. public long ErrCode { get; set; }
  32. /// <summary>
  33. /// 错误信息
  34. /// </summary>
  35. [XmlElement("err_msg")]
  36. public string ErrMsg { get; set; }
  37. /// <summary>
  38. /// 成功状态
  39. /// </summary>
  40. [XmlElement("success")]
  41. public string Success { get; set; }
  42. /// <summary>
  43. /// 时间戳
  44. /// </summary>
  45. [XmlElement("ts")]
  46. public long Ts { get; set; }
  47. }
  48. }
  49. }