31 lines
878 B
C#
31 lines
878 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserApplepayProvisioningbundleEffectModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayUserApplepayProvisioningbundleEffectModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 事件类型
|
|
/// </summary>
|
|
[XmlElement("event_type")]
|
|
public string EventType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卡id(由固定前缀+32位数字构成)
|
|
/// </summary>
|
|
[XmlElement("provisioning_bundle_identifier")]
|
|
public string ProvisioningBundleIdentifier { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卡的用户id(由固定前缀+支付宝用户id组成)
|
|
/// </summary>
|
|
[XmlElement("reference_identifier")]
|
|
public string ReferenceIdentifier { get; set; }
|
|
}
|
|
}
|