using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEbppFlowQualificationDetectModel Data Structure. /// [Serializable] public class AlipayEbppFlowQualificationDetectModel : AopObject { /// /// 需要校验的用户手机号 /// [XmlElement("mobile")] public string Mobile { get; set; } /// /// 需要校验的产品id /// [XmlArray("product_id")] [XmlArrayItem("string")] public List ProductId { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }