using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// TransactionAuthenticationDetailDTO Data Structure. /// [Serializable] public class TransactionAuthenticationDetailDTO : AopObject { /// /// 支付打断推进方式 /// [XmlArray("authentication_mechanisms")] [XmlArrayItem("string")] public List AuthenticationMechanisms { get; set; } /// /// 密码校验方式 /// [XmlElement("pin_format")] public string PinFormat { get; set; } } }