kaq-quant-common 0.2.13__py3-none-any.whl → 0.2.14__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- kaq_quant_common/api/rest/instruction/models/loan.py +22 -0
- {kaq_quant_common-0.2.13.dist-info → kaq_quant_common-0.2.14.dist-info}/METADATA +1 -1
- {kaq_quant_common-0.2.13.dist-info → kaq_quant_common-0.2.14.dist-info}/RECORD +4 -3
- {kaq_quant_common-0.2.13.dist-info → kaq_quant_common-0.2.14.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from typing import Optional
|
|
2
|
+
|
|
3
|
+
from kaq_quant_common.api.rest.instruction.models import (
|
|
4
|
+
InstructionRequestBase, InstructionResponseBase)
|
|
5
|
+
|
|
6
|
+
# -----------------------------借贷-------------------
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
# ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ 活期借币
|
|
10
|
+
class QueryFlexibleLoanAssetRequest(InstructionRequestBase):
|
|
11
|
+
# 币种代码
|
|
12
|
+
coin: str
|
|
13
|
+
|
|
14
|
+
class QueryFlexibleLoanAssetResponse(InstructionResponseBase):
|
|
15
|
+
# 币种代码
|
|
16
|
+
coin: str
|
|
17
|
+
# 活期借币利率
|
|
18
|
+
interestRate: Optional[float] = None
|
|
19
|
+
# 最低可借数量
|
|
20
|
+
minLimit: Optional[float] = None
|
|
21
|
+
# 最高可借数量
|
|
22
|
+
maxLimit: Optional[float] = None
|
|
@@ -13,6 +13,7 @@ kaq_quant_common/api/rest/instruction/instruction_client.py,sha256=JlsHg_A9HBuAf
|
|
|
13
13
|
kaq_quant_common/api/rest/instruction/instruction_server_base.py,sha256=KWOKynlZzAkMUKa8gRMLtD2t9bR2iziu5x0wuTRZAo4,8342
|
|
14
14
|
kaq_quant_common/api/rest/instruction/models/__init__.py,sha256=fx5pnfcf9L5KvAqhsQBZkl9fUf9oABuroLGZqDNycpc,312
|
|
15
15
|
kaq_quant_common/api/rest/instruction/models/account.py,sha256=Lj12EvWNxEt7k9dAKSsFhTJDmLX553duMRa5NroJW30,1375
|
|
16
|
+
kaq_quant_common/api/rest/instruction/models/loan.py,sha256=0K6_hTmGNPQagUaNg0-5io8a19NZTBjweBmyPE0h7Ms,781
|
|
16
17
|
kaq_quant_common/api/rest/instruction/models/order.py,sha256=TO_1Z4TYNQSHW7dCe_M7F4lxQJq33ymPtDJV8Qohz2w,6849
|
|
17
18
|
kaq_quant_common/api/rest/instruction/models/position.py,sha256=OqtfWWcpGhbijJbwJqERkeFxPiIkzdBnhPx5CfXj8W0,1744
|
|
18
19
|
kaq_quant_common/api/rest/instruction/models/transfer.py,sha256=htjk4hb9THUZP4REW5gtyPdo850jHPtHPWFLPA2ERzo,775
|
|
@@ -64,6 +65,6 @@ kaq_quant_common/utils/signal_utils.py,sha256=zBSyEltNTKqkQCsrETd47kEBb3Q_OWUBUn
|
|
|
64
65
|
kaq_quant_common/utils/sqlite_utils.py,sha256=UDDFKfwL0N-jFifl40HdyOCENh2YQfW5so6hRaSJpv0,5722
|
|
65
66
|
kaq_quant_common/utils/uuid_utils.py,sha256=pm_pnXpd8n9CI66x3A20cOEUiriJyqHaKGCeLrgkBxU,71
|
|
66
67
|
kaq_quant_common/utils/yml_utils.py,sha256=gcKjb_-uuUajBGAl5QBPIZTg2wXm7qeeJvtHflj_zOE,4513
|
|
67
|
-
kaq_quant_common-0.2.
|
|
68
|
-
kaq_quant_common-0.2.
|
|
69
|
-
kaq_quant_common-0.2.
|
|
68
|
+
kaq_quant_common-0.2.14.dist-info/METADATA,sha256=pJ3PpYNzfqPpmGgqeNaei6_W6c0_LhHKbQQqN890rTY,1971
|
|
69
|
+
kaq_quant_common-0.2.14.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
70
|
+
kaq_quant_common-0.2.14.dist-info/RECORD,,
|
|
File without changes
|