summaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/LedgerTransaction.md
blob: edf5abc8d14d62c8ce0d51982087adb5ba4994ff (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
29
30
# LedgerTransaction


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **number** |  | [optional] [default to undefined]
**created** | **string** | When the Transaction (TX) was created into the database.This does not represent the exact time for any actionwhich may be responsible for this Transaction (TX), and TX timestamps will likely be a few milliseconds delayed | [optional] [default to undefined]
**ext_description** | **string** |  | [optional] [default to undefined]
**tag** | **string** |  | [optional] [default to undefined]
**metadata** | **{ [key: string]: string; }** |  | [optional] [default to undefined]
**entries** | [**Array<LedgerEntry>**](LedgerEntry.md) | A Transaction (TX) is composed of multiple Entry events. | [optional] [default to undefined]

## Example

```typescript
import { LedgerTransaction } from './api';

const instance: LedgerTransaction = {
    id,
    created,
    ext_description,
    tag,
    metadata,
    entries,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)