forked from Awethon/open-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
90 lines (80 loc) · 4.79 KB
/
__init__.py
File metadata and controls
90 lines (80 loc) · 4.79 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# coding: utf-8
# flake8: noqa
"""
OpenAPI
tinkoff.ru/invest OpenAPI. # noqa: E501
The version of the OpenAPI document: 1.0.0
Contact: n.v.melnikov@tinkoff.ru
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
__version__ = "1.0.0"
# import apis into sdk package
from openapi_genclient.api.market_api import MarketApi
from openapi_genclient.api.operations_api import OperationsApi
from openapi_genclient.api.orders_api import OrdersApi
from openapi_genclient.api.portfolio_api import PortfolioApi
from openapi_genclient.api.sandbox_api import SandboxApi
from openapi_genclient.api.user_api import UserApi
# import ApiClient
from openapi_genclient.api_client import ApiClient
from openapi_genclient.configuration import Configuration
from openapi_genclient.exceptions import OpenApiException
from openapi_genclient.exceptions import ApiTypeError
from openapi_genclient.exceptions import ApiValueError
from openapi_genclient.exceptions import ApiKeyError
from openapi_genclient.exceptions import ApiException
# import models into sdk package
from openapi_genclient.models.broker_account_type import BrokerAccountType
from openapi_genclient.models.candle import Candle
from openapi_genclient.models.candle_resolution import CandleResolution
from openapi_genclient.models.candles import Candles
from openapi_genclient.models.candles_response import CandlesResponse
from openapi_genclient.models.currencies import Currencies
from openapi_genclient.models.currency import Currency
from openapi_genclient.models.currency_position import CurrencyPosition
from openapi_genclient.models.empty import Empty
from openapi_genclient.models.error import Error
from openapi_genclient.models.error_payload import ErrorPayload
from openapi_genclient.models.instrument_type import InstrumentType
from openapi_genclient.models.limit_order_request import LimitOrderRequest
from openapi_genclient.models.limit_order_response import LimitOrderResponse
from openapi_genclient.models.market_instrument import MarketInstrument
from openapi_genclient.models.market_instrument_list import MarketInstrumentList
from openapi_genclient.models.market_instrument_list_response import MarketInstrumentListResponse
from openapi_genclient.models.market_instrument_response import MarketInstrumentResponse
from openapi_genclient.models.market_order_request import MarketOrderRequest
from openapi_genclient.models.market_order_response import MarketOrderResponse
from openapi_genclient.models.money_amount import MoneyAmount
from openapi_genclient.models.operation import Operation
from openapi_genclient.models.operation_status import OperationStatus
from openapi_genclient.models.operation_trade import OperationTrade
from openapi_genclient.models.operation_type import OperationType
from openapi_genclient.models.operation_type_with_commission import OperationTypeWithCommission
from openapi_genclient.models.operations import Operations
from openapi_genclient.models.operations_response import OperationsResponse
from openapi_genclient.models.order import Order
from openapi_genclient.models.order_response import OrderResponse
from openapi_genclient.models.order_status import OrderStatus
from openapi_genclient.models.order_type import OrderType
from openapi_genclient.models.orderbook import Orderbook
from openapi_genclient.models.orderbook_response import OrderbookResponse
from openapi_genclient.models.orders_response import OrdersResponse
from openapi_genclient.models.placed_limit_order import PlacedLimitOrder
from openapi_genclient.models.placed_market_order import PlacedMarketOrder
from openapi_genclient.models.portfolio import Portfolio
from openapi_genclient.models.portfolio_currencies_response import PortfolioCurrenciesResponse
from openapi_genclient.models.portfolio_position import PortfolioPosition
from openapi_genclient.models.portfolio_response import PortfolioResponse
from openapi_genclient.models.sandbox_account import SandboxAccount
from openapi_genclient.models.sandbox_currency import SandboxCurrency
from openapi_genclient.models.sandbox_register_request import SandboxRegisterRequest
from openapi_genclient.models.sandbox_register_response import SandboxRegisterResponse
from openapi_genclient.models.sandbox_set_currency_balance_request import SandboxSetCurrencyBalanceRequest
from openapi_genclient.models.sandbox_set_position_balance_request import SandboxSetPositionBalanceRequest
from openapi_genclient.models.search_market_instrument import SearchMarketInstrument
from openapi_genclient.models.search_market_instrument_response import SearchMarketInstrumentResponse
from openapi_genclient.models.trade_status import TradeStatus
from openapi_genclient.models.user_account import UserAccount
from openapi_genclient.models.user_accounts import UserAccounts
from openapi_genclient.models.user_accounts_response import UserAccountsResponse