We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac013ab commit 05736a3Copy full SHA for 05736a3
server/src/main/java/com/exactpro/blockchain/entity/DltMessage.java
@@ -0,0 +1,24 @@
1
+package com.exactpro.blockchain.entity;
2
+
3
+import com.fasterxml.jackson.annotation.JsonProperty;
4
5
+import java.math.BigDecimal;
6
+import java.time.Instant;
7
+import java.time.LocalDate;
8
9
+public class DltMessage {
10
+ @JsonProperty("endToEndId")
11
+ private String endToEndId;
12
13
+ @JsonProperty("currencyId")
14
+ private String currencyId;
15
16
+ @JsonProperty("amount")
17
+ private BigDecimal amount;
18
19
+ @JsonProperty("debtorAddress")
20
+ private String debtorAddress;
21
22
+ @JsonProperty("creditorAddress")
23
+ private String creditorAddress;
24
+}
0 commit comments