-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtransfers.json
42 lines (42 loc) · 1021 Bytes
/
transfers.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"transfers": [
{
"id": "{{.TimestampUnixNano}}{{.RequestNumber}}",
"debit_account_id": "2",
"credit_account_id": "3",
"amount": 1,
"ledger": 999,
"code": 1,
"transfer_flags": {
"linked": false,
"pending": false,
"post_pending_transfer": false,
"void_pending_transfer": false,
"balancing_debit": false,
"balancing_credit": false
},
"user_data128": "",
"user_data64": 0,
"user_data32": 0
},
{
"id": "{{.TimestampUnixNano}}{{add .RequestNumber 1}}",
"debit_account_id": "2",
"credit_account_id": "3",
"amount": 1,
"ledger": 999,
"code": 1,
"transfer_flags": {
"linked": false,
"pending": false,
"post_pending_transfer": false,
"void_pending_transfer": false,
"balancing_debit": false,
"balancing_credit": false
},
"user_data128": "",
"user_data64": 0,
"user_data32": 0
}
]
}