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