using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipaySiteprobeShopInfoGetResponse. /// public class AlipaySiteprobeShopInfoGetResponse : AopResponse { /// /// public, h5或者na /// [XmlElement("adv_type")] public string AdvType { get; set; } /// /// 返回码 /// [XmlElement("code")] public string Code { get; set; } /// /// 支付宝店铺Logo /// [XmlElement("logo")] public string Logo { get; set; } /// /// 返回值描述 /// [XmlElement("msg")] public string Msg { get; set; } /// /// 服务窗名称 /// [XmlElement("public_name")] public string PublicName { get; set; } /// /// 支付宝店铺名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 店铺公告 /// [XmlElement("shop_notice")] public string ShopNotice { get; set; } /// /// 第三方店铺名称 /// [XmlElement("third_party_shop_name")] public string ThirdPartyShopName { get; set; } /// /// h5 url /// [XmlElement("url")] public string Url { get; set; } } }