You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ar...@apache.org on 2023/02/02 15:47:19 UTC

[fineract] branch develop updated: FINERACT-1724: Swagger fixes

This is an automated email from the ASF dual-hosted git repository.

arnold pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 3a2f25980 FINERACT-1724: Swagger fixes
3a2f25980 is described below

commit 3a2f25980ff708ac5ab2e5005b2e42a0628c4bca
Author: Arnold Galovics <ga...@gmail.com>
AuthorDate: Thu Feb 2 14:29:38 2023 +0100

    FINERACT-1724: Swagger fixes
---
 .../api/LoanTransactionsApiResourceSwagger.java       | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/api/LoanTransactionsApiResourceSwagger.java b/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/api/LoanTransactionsApiResourceSwagger.java
index 72a2ab8d0..b1967fb59 100644
--- a/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/api/LoanTransactionsApiResourceSwagger.java
+++ b/fineract-provider/src/main/java/org/apache/fineract/portfolio/loanaccount/api/LoanTransactionsApiResourceSwagger.java
@@ -154,6 +154,24 @@ final class LoanTransactionsApiResourceSwagger {
 
         }
 
+        static final class GetLoansLoanIdLoanChargePaidByData {
+
+            private GetLoansLoanIdLoanChargePaidByData() {}
+
+            @Schema(example = "11")
+            public Long id;
+            @Schema(example = "100.000000")
+            public Double amount;
+            @Schema(example = "9679")
+            public Integer installmentNumber;
+            @Schema(example = "1")
+            public Long chargeId;
+            @Schema(example = "636")
+            public Long transactionId;
+            @Schema(example = "name")
+            public String name;
+        }
+
         @Schema(example = "3")
         public Long id;
         public GetLoansType type;
@@ -191,6 +209,7 @@ final class LoanTransactionsApiResourceSwagger {
         @Schema(example = "[2012, 5, 18]")
         public LocalDate possibleNextRepaymentDate;
         public Set<GetLoanTransactionRelation> transactionRelations;
+        public Set<GetLoansLoanIdLoanChargePaidByData> loanChargePaidByList;
         public PaymentDetailData paymentDetailData;
 
         static final class PaymentDetailData {