Skip to content

Commit

Permalink
Merge pull request #40 from FromDoppler/DD-1248-change-type
Browse files Browse the repository at this point in the history
[DD-1248] change type
  • Loading branch information
RodrigoPereyraDiaz authored Sep 27, 2023
2 parents 99f9300 + 85f07a0 commit 65a4a8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GreenArrow.Engine/Model/Events/DeliveryAttempt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public enum StatusEnum
/// <summary>
/// Internal use Studio feature that’s not yet documented.
/// </summary>
public int Sendsliceid { get; init; }
public string Sendsliceid { get; init; }

/// <summary>
/// Blank if the delivery attempt took place using an SMTP Relay Server or the default Throttling Rule.
Expand Down Expand Up @@ -152,7 +152,7 @@ public enum StatusEnum
/// Folded headers will simply contain the folding newlines/whitespace.
/// As a header may be included in an email multiple times, the value of the JSON object is an array of strings.
/// </summary>
public object Headers { get; init; }
public Dictionary<string, List<string>> Headers { get; init; }

/// <summary>
/// The size of the message (in bytes), if loaded from storage.
Expand Down

0 comments on commit 65a4a8b

Please sign in to comment.