josehernandezfintecheandomx commented on code in PR #2908:
URL: https://github.com/apache/fineract/pull/2908#discussion_r1094960950
##########
fineract-provider/src/main/java/org/apache/fineract/accounting/journalentry/api/JournalEntriesApiResourceSwagger.java:
##########
@@ -62,4 +64,77 @@ private PostJournalEntriesTransactionIdResponse() {
@Schema(description = "1")
public Long officeId;
}
+
+ @Schema(description = "GetJournalEntriesTransactionIdResponse")
+ public static final class GetJournalEntriesTransactionIdResponse {
+
+ private GetJournalEntriesTransactionIdResponse() {
+
+ }
+
+ static final class EnumOptionType {
+
+ private EnumOptionType() {}
+
+ @Schema(example = "2")
+ public Long id;
+ @Schema(example = "accountType.asset")
+ public String code;
+ @Schema(example = "ASSET")
+ public String value;
+ }
+
+ static final class TransactionDetails {
+
+ private TransactionDetails() {}
+
+ @Schema(example = "2")
+ public Long transactionId;
+ public EnumOptionType transactionType;
+ }
+
+ static final class JournalEntryTransactionPageItems {
+
+ private JournalEntryTransactionPageItems() {}
+
+ @Schema(example = "1")
Review Comment:
Done, the other fields are used for the bulk import process
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]