Skip to content

Commit

Permalink
Merge pull request #115 from Exizent/feature/ES-7318
Browse files Browse the repository at this point in the history
Added new property 'NameOfCreditor' in liability on property business…
  • Loading branch information
shubham22k authored Jan 15, 2025
2 parents 2c055cd + ffbb792 commit 10829b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

public class TrustLiabilityResourceRepresentation
{
public string? NameOfCreditor { get; set; }
public string Description { get; init; } = null!;
public decimal Value { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ private static JsonObject BuildLiability(
{
var jsonObject = new JsonObject
{
{ "nameOfCreditor", trustLiability.NameOfCreditor },
{ "description", trustLiability.Description },
{ "value", trustLiability.Value }
};
Expand Down

0 comments on commit 10829b8

Please sign in to comment.