using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayMarketingCardQueryResponse. /// public class AlipayMarketingCardQueryResponse : AopResponse { /// /// 商户卡信息 /// [XmlElement("card_info")] public MerchantCard CardInfo { get; set; } /// /// 商户会员卡页面跳转到支付宝卡券详情页面的schema地址 /// [XmlElement("schema_url")] public string SchemaUrl { get; set; } } }