-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ability to reject multiple transactions.
- Loading branch information
Mateusz Czeladka
committed
Aug 7, 2024
1 parent
0d942c7
commit f0d6901
Showing
8 changed files
with
243 additions
and
228 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
...g/cardanofoundation/lob/app/accounting_reporting_core/domain/core/TransactionProblem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package org.cardanofoundation.lob.app.accounting_reporting_core.domain.core; | ||
|
||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
import lombok.ToString; | ||
import org.zalando.problem.Problem; | ||
|
||
@RequiredArgsConstructor | ||
@ToString | ||
@Getter | ||
public class TransactionProblem { | ||
|
||
private final String id; | ||
private final Problem problem; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.