summaryrefslogtreecommitdiff
path: root/jb-ui/src/api_fsb/docs/LedgerEntry.md
diff options
context:
space:
mode:
Diffstat (limited to 'jb-ui/src/api_fsb/docs/LedgerEntry.md')
-rw-r--r--jb-ui/src/api_fsb/docs/LedgerEntry.md28
1 files changed, 28 insertions, 0 deletions
diff --git a/jb-ui/src/api_fsb/docs/LedgerEntry.md b/jb-ui/src/api_fsb/docs/LedgerEntry.md
new file mode 100644
index 0000000..12f44b8
--- /dev/null
+++ b/jb-ui/src/api_fsb/docs/LedgerEntry.md
@@ -0,0 +1,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)