You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
625 B
C#

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