blob: a7d2e8a0bbe70c13c00f649cb1400e2eb077d31a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# dml-pipe
A pipe represents how much money the user wants to come in or go out of a
bucket. In other words, it represents a flow of money from the tank to a bucket.
| Field | Type | Description |
| ------ | ------ | -------------------------------------------------------- |
| id | string | |
| amount | number | The amount of money flowing through the pipe. |
| period | string | How long it takes for `amount` to flow through the pipe. |
Source: req-017
|