Skip to content

Commit

Permalink
Merge pull request #51 from QuantozTechnology/is-reviewed
Browse files Browse the repository at this point in the history
NXS-6267 : Set default values for IsReviewed and IsPEP properties
  • Loading branch information
WJRobert authored Oct 8, 2024
2 parents 0e301e6 + 1cd8405 commit 50afef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Nexus.Sdk.Shared/Requests/CustomerRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ public class CustomerRequest
public string? ExternalCustomerCode { get; set; }

[JsonPropertyName("IsReviewed")]
public bool? IsReviewed { get; set; }
public bool? IsReviewed { get; set; } = false;

[JsonPropertyName("isPEP")]
public bool? IsPEP { get; set; }
public bool? IsPEP { get; set; } = false;

public IDictionary<string, string>? Data { get; set; }
}
Expand Down

0 comments on commit 50afef3

Please sign in to comment.