This commit is contained in:
2022-12-16 06:01:23 +00:00
parent 26c2ae5cc9
commit effd96143f
310 changed files with 48715 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
using System;
using System.Collections.Generic;
using Sockeye.Biz;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace Sockeye.Models
{
//This model holds the deliveries that have been attempted in the past 90 days (cleaned out by corenotifysweeper)
//it is used for verification / troubleshooting purposes from the OPS log
//and also used as a circuit breaker by the corejobnotify to ensure users are not spammed with identical messages
public class NotifyDeliveryLog
{
public long Id { get; set; }
public uint Concurrency { get; set; }
//public SockType NotifyType { get; set; }
//public long CustomerNotifySubscriptionId {get;set;}
[Required]
public DateTime Processed { get; set; }
public long ObjectId { get; set; }
[Required]
public long NotifySubscriptionId { get; set; }
[Required]
public bool Fail { get; set; }
public string Error { get; set; }
public NotifyDeliveryLog()
{
Processed = DateTime.UtcNow;
Fail = false;
ObjectId = 0;
}
//linked entity
public NotifySubscription NotifySubscription { get; set; }
}//eoc
}//eons