Data Model - Money
Less than 1 minute
Data Model
The term money
can refer to various concepts and aspects related to currency and financial transactions. Here are some key points:
Param | Type | Description |
---|---|---|
currency | String | Transaction currency |
amount | Number | Transaction amount |
IDR --> # 10000
THB --> #.## 500.00
BRL --> #.## 10000.00
INR --> #.## 10000.00
USDT --> #.#### 200.0000
BTC --> #.#### 10.0000
Example
{
"currency": "IDR",
"amount": 10000
}
{
"currency": "THB",
"amount": 500.00
}
{
"currency": "INR",
"amount": 500.00
}
{
"currency": "BRL",
"amount": 500.00
}
{
"currency": "MXN",
"amount": 500.00
}
{
"currency": "USDT",
"amount": 200.1234
}
{
"currency": "BTC",
"amount": 0.0001
}