using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserApplepayProvisioningbundleModifyModel Data Structure. /// [Serializable] public class AlipayUserApplepayProvisioningbundleModifyModel : AopObject { /// /// 管理动作 /// [XmlElement("action")] public string Action { get; set; } /// /// otp的值 /// [XmlElement("otp_value")] public string OtpValue { get; set; } /// /// 卡id(由固定前缀+32位数字构成) /// [XmlElement("provisioning_bundle_identifier")] public string ProvisioningBundleIdentifier { get; set; } /// /// 卡的用户id(由固定前缀+支付宝用户id组成) /// [XmlElement("reference_identifier")] public string ReferenceIdentifier { get; set; } } }