TmallCloudcodeBusinessNotifyResponse.cs 787 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Top.Api;
  5. namespace QimenCloud.Api.sceneqimen.Response
  6. {
  7. /// <summary>
  8. /// TmallCloudcodeBusinessNotifyResponse.
  9. /// </summary>
  10. public class TmallCloudcodeBusinessNotifyResponse : QimenCloudResponse
  11. {
  12. /// <summary>
  13. /// 错误码
  14. /// </summary>
  15. [XmlElement("errorCode")]
  16. public string ErrorCode { get; set; }
  17. /// <summary>
  18. /// 错误信息
  19. /// </summary>
  20. [XmlElement("errorMsg")]
  21. public string ErrorMsg { get; set; }
  22. /// <summary>
  23. /// 业务处理是否成功
  24. /// </summary>
  25. [XmlElement("success")]
  26. public bool Success { get; set; }
  27. }
  28. }