using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayTradeApplepayAuthenticationSubmitModel Data Structure.
///
[Serializable]
public class AlipayTradeApplepayAuthenticationSubmitModel : AopObject
{
///
/// ApplePay核身鉴权结果,包括:支付密码、用户确认、数字签名
///
[XmlArray("authentication_results")]
[XmlArrayItem("authentication_result")]
public List AuthenticationResults { get; set; }
///
/// Apple端的设备ID
///
[XmlElement("device_identifier")]
public string DeviceIdentifier { get; set; }
///
/// Apple绑定的BundleId
///
[XmlElement("dpan_identifier")]
public string DpanIdentifier { get; set; }
///
/// 交易标识
///
[XmlElement("transaction_identifier")]
public string TransactionIdentifier { get; set; }
}
}