using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SmartAutomatAssociate Data Structure. /// [Serializable] public class SmartAutomatAssociate : AopObject { /// /// 合作伙伴类型 DISTRIBUTORS:渠道商 /// [XmlElement("associate_type")] public string AssociateType { get; set; } /// /// 合作伙伴的支付宝账号ID /// [XmlElement("associate_user_id")] public string AssociateUserId { get; set; } } }