using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingCrowdDataSyncModel Data Structure. /// [Serializable] public class AlipayMarketingCrowdDataSyncModel : AopObject { /// /// 人群来源业务方,枚举:DATANEST=金融云 /// [XmlElement("biz_from")] public string BizFrom { get; set; } /// /// 人群创建者ID /// [XmlElement("create_id")] public string CreateId { get; set; } /// /// 人群ID /// [XmlElement("crowd_id")] public string CrowdId { get; set; } /// /// 人群名称 /// [XmlElement("crowd_name")] public string CrowdName { get; set; } /// /// 人群中的用户数 /// [XmlElement("crowd_size")] public long CrowdSize { get; set; } /// /// 人群状态,枚举:INIT=待生成、EFFECTIVE=已生成、DELETE=已删除 /// [XmlElement("crowd_status")] public string CrowdStatus { get; set; } /// /// 人群有效期截止时间,标准时间格式:yyyy-MM-dd HH:mm:ss /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 人群拥有者ID /// [XmlElement("owner_id")] public string OwnerId { get; set; } /// /// 人群有效期开始时间,标准时间格式:yyyy-MM-dd HH:mm:ss /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 人群更新周期,枚举:DAILY=每日更新 /// [XmlElement("update_circle_type")] public string UpdateCircleType { get; set; } } }