using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// BFActivityOpenApiInfo Data Structure. /// [Serializable] public class BFActivityOpenApiInfo : AopObject { /// /// 活动收费配置信息 /// [XmlArray("activity_fund_infos")] [XmlArrayItem("b_f_activity_fund_info")] public List ActivityFundInfos { get; set; } /// /// 活动模板ID /// [XmlElement("aggr_id")] public string AggrId { get; set; } /// /// true 有效活动/false 失效活动 /// [XmlElement("available")] public bool Available { get; set; } /// /// 开始期 /// [XmlElement("gmt_active")] public string GmtActive { get; set; } /// /// 时间类型 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 有效期 /// [XmlElement("gmt_expired")] public string GmtExpired { get; set; } /// /// 活动ID /// [XmlElement("id")] public string Id { get; set; } /// /// 名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 活动码信息 /// [XmlElement("pc_id")] public string PcId { get; set; } /// /// 权益产品码 /// [XmlElement("product_id")] public string ProductId { get; set; } /// /// 活动费率的版本信息 /// [XmlElement("rate_version")] public string RateVersion { get; set; } } }