using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAuthUserauthRelationshipCertifyModel Data Structure. /// [Serializable] public class AlipayOpenAuthUserauthRelationshipCertifyModel : AopObject { /// /// 操作接口名字 /// [XmlElement("action")] public string Action { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }