using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiServindustryExerciseNoticeCreateModel Data Structure. /// [Serializable] public class KoubeiServindustryExerciseNoticeCreateModel : AopObject { /// /// 外部通知ID /// [XmlElement("external_notice_id")] public string ExternalNoticeId { get; set; } /// /// 健身ID /// [XmlElement("fitness_id")] public string FitnessId { get; set; } /// /// 有效期结束时间 /// [XmlElement("gmt_end")] public string GmtEnd { get; set; } /// /// 有效期开始时间 /// [XmlElement("gmt_start")] public string GmtStart { get; set; } /// /// 跳转链接 /// [XmlElement("jump_url")] public string JumpUrl { get; set; } /// /// 跳转链接类型 /// [XmlElement("jump_url_type")] public string JumpUrlType { get; set; } /// /// 外部请求ID /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 店铺ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 消息子类型 /// [XmlElement("sub_type")] public string SubType { get; set; } /// /// 通知模板动态参数 /// [XmlElement("template_args")] public NoticeTemplateArgs TemplateArgs { get; set; } /// /// 推送标题 /// [XmlElement("title")] public string Title { get; set; } /// /// 消息类型 /// [XmlElement("type")] public string Type { get; set; } } }