using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenPublicPartnerSubscribeSyncModel Data Structure. /// [Serializable] public class AlipayOpenPublicPartnerSubscribeSyncModel : AopObject { /// /// 是否接受服务窗消息 /// [XmlElement("accept_msg")] public string AcceptMsg { get; set; } /// /// 关注的服务窗id /// [XmlElement("follow_object_id")] public string FollowObjectId { get; set; } /// /// 操作类型,添加关注或取消关注 /// [XmlElement("operate_type")] public string OperateType { get; set; } /// /// 是否打开接收公众号PUSH提醒开关 ON:打开 OFF:关闭 /// [XmlElement("push_switch")] public string PushSwitch { get; set; } /// /// 关注来源 /// [XmlElement("source_id")] public string SourceId { get; set; } /// /// 关注服务窗的用户id /// [XmlElement("user_id")] public string UserId { get; set; } } }