NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCardDeleteMo...

43 lines
1.6 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMarketingCardDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCardDeleteModel : AopObject
{
/// <summary>
/// 删卡扩展参数json格式。 用于商户的特定业务信息的传递,只有商户与支付宝约定了传递此参数且约定了参数含义,此参数才有效。 目前支持如下key new_card_no新卡号 donee_user_id受赠人userId
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户端删卡业务流水号(商户确保流水号唯一性)
/// </summary>
[XmlElement("out_serial_no")]
public string OutSerialNo { get; set; }
/// <summary>
/// 删卡原因 USER_UNBUND用户解绑可以重新绑定 CANCEL销户完成销户后就不能再重新绑定 PRESENT转赠可以重新绑定
/// </summary>
[XmlElement("reason_code")]
public string ReasonCode { get; set; }
/// <summary>
/// 支付宝业务卡号。即开卡接口返回结果中的card_info.biz_card_no。
/// </summary>
[XmlElement("target_card_no")]
public string TargetCardNo { get; set; }
/// <summary>
/// 卡号ID类型 BIZ_CARD支付宝卡号
/// </summary>
[XmlElement("target_card_no_type")]
public string TargetCardNoType { get; set; }
}
}