Skip to content

Commit

Permalink
Adding missing required comments for StatementDeposits
Browse files Browse the repository at this point in the history
  • Loading branch information
devops-blockchyp committed Oct 27, 2023
1 parent 7a85727 commit 7ae7bb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/BlockChyp/Entities/InvoicePayment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace BlockChyp.Entities
{
/// <summary>
/// Models information about payments against an invoice
/// Models information about payments against an invoice.
/// </summary>
public class InvoicePayment : BaseEntity
{
Expand Down
6 changes: 3 additions & 3 deletions src/BlockChyp/Entities/MerchantInvoiceDetailResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,19 +161,19 @@ public class MerchantInvoiceDetailResponse : BaseEntity, IAbstractAcknowledgemen
public Address BillingAddress { get; set; }

/// <summary>
///
/// The list of line item details associated with the invoice.
/// </summary>
[JsonProperty(PropertyName = "lineItems")]
public List<InvoiceLineItem> LineItems { get; set; }

/// <summary>
///
/// The list of payments collected against the invoice.
/// </summary>
[JsonProperty(PropertyName = "payments")]
public List<InvoicePayment> Payments { get; set; }

/// <summary>
///
/// The list of merchant settlements disbursed during the statement period.
/// </summary>
[JsonProperty(PropertyName = "deposits")]
public List<StatementDeposit> Deposits { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/BlockChyp/Entities/PartnerStatementListResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class PartnerStatementListResponse : BaseEntity, IAbstractAcknowledgement
public string ResponseDescription { get; set; }

/// <summary>
///
/// The list of statements summaries.
/// </summary>
[JsonProperty(PropertyName = "statements")]
public List<PartnerStatementSummary> Statements { get; set; }
Expand Down

0 comments on commit 7ae7bb0

Please sign in to comment.