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
| {
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schemas.cexpay.io/processing/v3/fund.json",
"title": "Represents an order funds (one side).",
"type": "object",
"properties": {
"accountId": {
"$ref": "https://schemas.cexpay.io/processing/v3/account/identifier-account.json",
"title": "Account identifier of funds location."
},
"currency": {
"type": "string",
"title": "Currency of funds."
},
"amount": {
"$ref": "https://schemas.cexpay.io/processing/v3/primitives.json#definitions/financialPositive",
"title": "Amount of order funds."
}
},
"required": [
"accountId",
"currency",
"amount"
]
}
|
1
2
3
| {
theme: "forest"
}
|
1
2
3
4
| export interface Dto {
readonly flow: 'standard';
readonly type: 'direct';
}
|
Table of contents