blob: 12f44b842f832e88e8641fa3f9f18a972898fe13 (
plain)
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
|
# LedgerEntry
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **number** | | [optional] [default to undefined]
**direction** | [**Direction**](Direction.md) | | [default to undefined]
**account_uuid** | **string** | | [default to undefined]
**amount** | **number** | The USDCent amount. A LedgerEntry cannot be made for0 USDCent and it cannot be negative. | [default to undefined]
**transaction_id** | **number** | | [optional] [default to undefined]
## Example
```typescript
import { LedgerEntry } from './api';
const instance: LedgerEntry = {
id,
direction,
account_uuid,
amount,
transaction_id,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|