using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayMsaasItapUserCertifyModel Data Structure.
///
[Serializable]
public class AlipayMsaasItapUserCertifyModel : AopObject
{
///
/// 用户认证消息体
///
[XmlArray("payload")]
[XmlArrayItem("user_certify_payload")]
public List Payload { get; set; }
///
/// 请求唯一ID
///
[XmlElement("request_id")]
public string RequestId { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}