NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMarketingCardQueryRes...

31 lines
919 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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>
/// 商户会员卡页面跳转到支付宝卡券详情页的pass_id对应schema地址中的参数p 主要用于小程序跳往会员卡详情的链接拼接
/// </summary>
[XmlElement("pass_id")]
public string PassId { get; set; }
/// <summary>
/// 商户会员卡页面跳转到支付宝卡券详情页面的schema地址
/// </summary>
[XmlElement("schema_url")]
public string SchemaUrl { get; set; }
}
}