NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCardUpdateMo...

57 lines
2.0 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMarketingCardUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCardUpdateModel : AopObject
{
/// <summary>
/// 需要修改的最新卡信息
/// </summary>
[XmlElement("card_info")]
public MerchantCard CardInfo { get; set; }
/// <summary>
/// 扩展信息(暂时无用)
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 注意:此字段已废弃,卡面样式以模板中的定义为准。 会员卡卡面展示样式 参考:展示位置详情参考"商户会员卡->快速接入文档->第四步" 备注mcard_style_info与card_info下的template_id不能同时更新
/// </summary>
[XmlElement("mcard_style_info")]
public McardStylInfo McardStyleInfo { get; set; }
/// <summary>
/// 卡信息变更通知消息 1、在列表中定义的消息才会发送给用户消息格式一定。 2、根据卡信息变更情况一次可发送多个消息
/// </summary>
[XmlArray("notify_messages")]
[XmlArrayItem("mcard_notify_message")]
public List<McardNotifyMessage> NotifyMessages { get; set; }
/// <summary>
/// 标识业务发生的时间
/// </summary>
[XmlElement("occur_time")]
public string OccurTime { 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; }
}
}