using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoCityserviceUserPropertiesSendModel Data Structure. /// [Serializable] public class AlipayEcoCityserviceUserPropertiesSendModel : AopObject { /// /// 城市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 数据同步类型 /// [XmlElement("cud_type")] public string CudType { get; set; } /// /// 行业类型 /// [XmlElement("industry_type")] public string IndustryType { get; set; } /// /// 用户属性类型 /// [XmlElement("prop_type")] public string PropType { get; set; } /// /// 用户属性值 /// [XmlElement("prop_value")] public string PropValue { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }