Skip to content

Commit 05736a3

Browse files
committed
Add DltMessage
1 parent ac013ab commit 05736a3

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)