AlipaySiteprobeShopInfoGetResponse.cs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Xml.Serialization;
  3. namespace Aop.Api.Response
  4. {
  5. /// <summary>
  6. /// AlipaySiteprobeShopInfoGetResponse.
  7. /// </summary>
  8. public class AlipaySiteprobeShopInfoGetResponse : AopResponse
  9. {
  10. /// <summary>
  11. /// public, h5或者na
  12. /// </summary>
  13. [XmlElement("adv_type")]
  14. public string AdvType { get; set; }
  15. /// <summary>
  16. /// 返回码
  17. /// </summary>
  18. [XmlElement("code")]
  19. public string Code { get; set; }
  20. /// <summary>
  21. /// 支付宝店铺Logo
  22. /// </summary>
  23. [XmlElement("logo")]
  24. public string Logo { get; set; }
  25. /// <summary>
  26. /// 返回值描述
  27. /// </summary>
  28. [XmlElement("msg")]
  29. public string Msg { get; set; }
  30. /// <summary>
  31. /// 服务窗名称
  32. /// </summary>
  33. [XmlElement("public_name")]
  34. public string PublicName { get; set; }
  35. /// <summary>
  36. /// 支付宝店铺名称
  37. /// </summary>
  38. [XmlElement("shop_name")]
  39. public string ShopName { get; set; }
  40. /// <summary>
  41. /// 店铺公告
  42. /// </summary>
  43. [XmlElement("shop_notice")]
  44. public string ShopNotice { get; set; }
  45. /// <summary>
  46. /// 第三方店铺名称
  47. /// </summary>
  48. [XmlElement("third_party_shop_name")]
  49. public string ThirdPartyShopName { get; set; }
  50. /// <summary>
  51. /// h5 url
  52. /// </summary>
  53. [XmlElement("url")]
  54. public string Url { get; set; }
  55. }
  56. }