using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserApplepayOtpSendModel Data Structure.
///
[Serializable]
public class AlipayUserApplepayOtpSendModel : AopObject
{
///
/// 卡id(由固定前缀+32位数字构成)
///
[XmlElement("provisioning_bundle_identifier")]
public string ProvisioningBundleIdentifier { get; set; }
///
/// 校验方法标识
///
[XmlElement("resolution_method_identifier")]
public string ResolutionMethodIdentifier { get; set; }
}
}