package request type CreateNotificationRequest struct { RecipientUserID int64 `json:"recipient_user_id"` Title string `json:"title"` Content string `json:"content"` NotificationType string `json:"notification_type"` BizType string `json:"biz_type"` BizID int64 `json:"biz_id"` ActionURL string `json:"action_url"` } type MarkNotificationReadRequest struct { ID int64 `json:"id"` }