Skip to content

Commit

Permalink
Merge pull request #54 from FromDoppler/dd-1292-dkim-sdk-integration-…
Browse files Browse the repository at this point in the history
…fix-response

[DD-1292] Fix dkim response
  • Loading branch information
blancfabian authored Nov 17, 2023
2 parents 2d737ef + e64b115 commit 3311018
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GreenArrow.Engine.Test/DKIMKeysApi/DKIMKeysApiTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using Moq.Protected;
using System.Net;

namespace GreenArrow.Engine.Test.HttpSubmissionApi
namespace GreenArrow.Engine.Test.DKIMKeysApi
{
public class DKIMKeysApiTest
{
Expand Down
2 changes: 1 addition & 1 deletion GreenArrow.Engine/DKIMKeysApi/DKIMKeysResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class DKIMKeysResponse : IRestApiModel
/// <summary>
/// Error message when request was not accepted
/// </summary>
public string ErrorMessages { get; init; }
public string[] ErrorMessages { get; init; }
}

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion GreenArrow.Engine/Model/DkimKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Key
/// <summary>
/// The number of bits used to generate this key.
/// </summary>
public int Bits { get; init; }
public int? Bits { get; init; }

/// <summary>
/// The PEM-encoded private key.
Expand Down

0 comments on commit 3311018

Please sign in to comment.