publicdotcom-cli 1.0.0__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.
- publicdotcom_cli/__init__.py +3 -0
- publicdotcom_cli/__main__.py +5 -0
- publicdotcom_cli/_generated/__init__.py +8 -0
- publicdotcom_cli/_generated/api/__init__.py +1 -0
- publicdotcom_cli/_generated/api/account_details/__init__.py +1 -0
- publicdotcom_cli/_generated/api/account_details/get_account_portfolio_v2.py +182 -0
- publicdotcom_cli/_generated/api/account_details/get_history.py +250 -0
- publicdotcom_cli/_generated/api/authorization/__init__.py +1 -0
- publicdotcom_cli/_generated/api/authorization/create_personal_access_token.py +230 -0
- publicdotcom_cli/_generated/api/instrument_details/__init__.py +1 -0
- publicdotcom_cli/_generated/api/instrument_details/get_all_instruments.py +303 -0
- publicdotcom_cli/_generated/api/instrument_details/get_instrument.py +170 -0
- publicdotcom_cli/_generated/api/list_accounts/__init__.py +1 -0
- publicdotcom_cli/_generated/api/list_accounts/get_accounts.py +172 -0
- publicdotcom_cli/_generated/api/market_data/__init__.py +1 -0
- publicdotcom_cli/_generated/api/market_data/get_option_chain.py +200 -0
- publicdotcom_cli/_generated/api/market_data/get_option_expirations.py +210 -0
- publicdotcom_cli/_generated/api/market_data/get_quotes.py +200 -0
- publicdotcom_cli/_generated/api/option_details/__init__.py +1 -0
- publicdotcom_cli/_generated/api/option_details/get_option_greeks.py +194 -0
- publicdotcom_cli/_generated/api/order_placement/__init__.py +1 -0
- publicdotcom_cli/_generated/api/order_placement/cancel_order.py +123 -0
- publicdotcom_cli/_generated/api/order_placement/get_order.py +206 -0
- publicdotcom_cli/_generated/api/order_placement/place_multileg_order.py +214 -0
- publicdotcom_cli/_generated/api/order_placement/place_order.py +222 -0
- publicdotcom_cli/_generated/api/order_placement/preflight_multi_leg.py +276 -0
- publicdotcom_cli/_generated/api/order_placement/preflight_single_leg.py +220 -0
- publicdotcom_cli/_generated/api/order_placement/replace_order.py +222 -0
- publicdotcom_cli/_generated/client.py +272 -0
- publicdotcom_cli/_generated/errors.py +16 -0
- publicdotcom_cli/_generated/models/__init__.py +417 -0
- publicdotcom_cli/_generated/models/com_hellopublic_holdingsystem_core_types_option_price_increment.py +71 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapiauthservice_api_personal_create_access_token_request.py +84 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapiauthservice_api_personal_create_access_token_response.py +61 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapiauthservice_domain_error_error_body.py +70 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings.py +161 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings_account_type.py +14 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings_brokerage_account_type.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings_options_level.py +12 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings_response.py +85 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_account_account_settings_trade_permissions.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_response_page.py +195 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction.py +263 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_direction.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_security_type.py +13 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_sub_type.py +19 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_type.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_chain_request.py +85 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_chain_response.py +115 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_expirations_request.py +75 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_expirations_response.py +81 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote.py +272 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_outcome.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_request.py +84 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_response.py +87 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_one_day_change.py +74 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_marketdata_quote_option_details.py +135 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_options_greek_response.py +113 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_options_greeks_response.py +86 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_options_option_greeks_type_0.py +117 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_cancel_replace_order_request.py +139 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_cancel_replace_order_request_order_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto.py +265 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_fractional_trading.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_option_spread_trading.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_option_trading.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_shorting_availability.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_trading.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_instrument_response.py +87 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_multileg_order_request.py +141 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_multileg_order_request_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_request.py +231 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_request_equity_market_session.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_request_open_close_indicator.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_request_order_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_request_order_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_api_order_result.py +69 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_leg_instrument.py +73 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_leg_instrument_type.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order.py +334 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_instrument.py +73 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_instrument_type.py +15 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_leg.py +125 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_leg_open_close_indicator.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_leg_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_open_close_indicator.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_status.py +17 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_order_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_short_selling.py +127 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_short_selling_availability.py +10 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_gateway_short_selling_uptick_rule.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details.py +67 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details_bond.py +74 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details_crypto.py +92 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_order_expiration.py +87 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_order_order_expiration_time_in_force.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gain_type_0.py +88 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_buying_power.py +77 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_cost_basis_type_0.py +167 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_account_v2.py +233 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_account_v2_account_type.py +14 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_equity_v2.py +100 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_equity_v2_type.py +14 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_instrument.py +93 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_instrument_type.py +14 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_position.py +352 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_strategy.py +276 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_gateway_strategy_leg.py +78 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_portfolio_price_type_0.py +79 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_margin_impact.py +70 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_margin_requirement.py +70 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_option_details.py +91 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_option_details_type.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_option_rebate.py +79 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_price_increment.py +80 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_gateway_regulatory_fees.py +118 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response.py +167 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response_open_close_indicator.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_request.py +148 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_request_order_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_response.py +313 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request.py +225 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_equity_market_session.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_open_close_indicator.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_order_side.py +9 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_order_type.py +11 -0
- publicdotcom_cli/_generated/models/com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_response.py +410 -0
- publicdotcom_cli/_generated/models/get_all_instruments_fractional_trading_filter_item.py +10 -0
- publicdotcom_cli/_generated/models/get_all_instruments_option_spread_trading_filter_item.py +10 -0
- publicdotcom_cli/_generated/models/get_all_instruments_option_trading_filter_item.py +10 -0
- publicdotcom_cli/_generated/models/get_all_instruments_trading_filter_item.py +10 -0
- publicdotcom_cli/_generated/models/get_all_instruments_type_filter_item.py +15 -0
- publicdotcom_cli/_generated/models/get_instrument_type.py +15 -0
- publicdotcom_cli/_generated/types.py +54 -0
- publicdotcom_cli/cli.py +761 -0
- publicdotcom_cli/client.py +83 -0
- publicdotcom_cli/config.py +222 -0
- publicdotcom_cli/output.py +77 -0
- publicdotcom_cli/payloads.py +36 -0
- publicdotcom_cli-1.0.0.dist-info/METADATA +256 -0
- publicdotcom_cli-1.0.0.dist-info/RECORD +146 -0
- publicdotcom_cli-1.0.0.dist-info/WHEEL +4 -0
- publicdotcom_cli-1.0.0.dist-info/entry_points.txt +2 -0
|
@@ -0,0 +1,417 @@
|
|
|
1
|
+
"""Contains all the data models used in inputs/outputs"""
|
|
2
|
+
|
|
3
|
+
from .com_hellopublic_holdingsystem_core_types_option_price_increment import (
|
|
4
|
+
ComHellopublicHoldingsystemCoreTypesOptionPriceIncrement,
|
|
5
|
+
)
|
|
6
|
+
from .com_hellopublic_userapiauthservice_api_personal_create_access_token_request import (
|
|
7
|
+
ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenRequest,
|
|
8
|
+
)
|
|
9
|
+
from .com_hellopublic_userapiauthservice_api_personal_create_access_token_response import (
|
|
10
|
+
ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenResponse,
|
|
11
|
+
)
|
|
12
|
+
from .com_hellopublic_userapiauthservice_domain_error_error_body import (
|
|
13
|
+
ComHellopublicUserapiauthserviceDomainErrorErrorBody,
|
|
14
|
+
)
|
|
15
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings import (
|
|
16
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettings,
|
|
17
|
+
)
|
|
18
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings_account_type import (
|
|
19
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettingsAccountType,
|
|
20
|
+
)
|
|
21
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings_brokerage_account_type import (
|
|
22
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettingsBrokerageAccountType,
|
|
23
|
+
)
|
|
24
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings_options_level import (
|
|
25
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettingsOptionsLevel,
|
|
26
|
+
)
|
|
27
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings_response import (
|
|
28
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettingsResponse,
|
|
29
|
+
)
|
|
30
|
+
from .com_hellopublic_userapigateway_api_rest_account_account_settings_trade_permissions import (
|
|
31
|
+
ComHellopublicUserapigatewayApiRestAccountAccountSettingsTradePermissions,
|
|
32
|
+
)
|
|
33
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_response_page import (
|
|
34
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryResponsePage,
|
|
35
|
+
)
|
|
36
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction import (
|
|
37
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransaction,
|
|
38
|
+
)
|
|
39
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_direction import (
|
|
40
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionDirection,
|
|
41
|
+
)
|
|
42
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_security_type import (
|
|
43
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSecurityType,
|
|
44
|
+
)
|
|
45
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_side import (
|
|
46
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSide,
|
|
47
|
+
)
|
|
48
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_sub_type import (
|
|
49
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSubType,
|
|
50
|
+
)
|
|
51
|
+
from .com_hellopublic_userapigateway_api_rest_history_gateway_history_transaction_type import (
|
|
52
|
+
ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionType,
|
|
53
|
+
)
|
|
54
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_chain_request import (
|
|
55
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionChainRequest,
|
|
56
|
+
)
|
|
57
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_chain_response import (
|
|
58
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionChainResponse,
|
|
59
|
+
)
|
|
60
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_expirations_request import (
|
|
61
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionExpirationsRequest,
|
|
62
|
+
)
|
|
63
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_option_expirations_response import (
|
|
64
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionExpirationsResponse,
|
|
65
|
+
)
|
|
66
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote import (
|
|
67
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuote,
|
|
68
|
+
)
|
|
69
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_outcome import (
|
|
70
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteOutcome,
|
|
71
|
+
)
|
|
72
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_request import (
|
|
73
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteRequest,
|
|
74
|
+
)
|
|
75
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_gateway_quote_response import (
|
|
76
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteResponse,
|
|
77
|
+
)
|
|
78
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_one_day_change import (
|
|
79
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteOneDayChange,
|
|
80
|
+
)
|
|
81
|
+
from .com_hellopublic_userapigateway_api_rest_marketdata_quote_option_details import (
|
|
82
|
+
ComHellopublicUserapigatewayApiRestMarketdataQuoteOptionDetails,
|
|
83
|
+
)
|
|
84
|
+
from .com_hellopublic_userapigateway_api_rest_options_greek_response import (
|
|
85
|
+
ComHellopublicUserapigatewayApiRestOptionsGreekResponse,
|
|
86
|
+
)
|
|
87
|
+
from .com_hellopublic_userapigateway_api_rest_options_greeks_response import (
|
|
88
|
+
ComHellopublicUserapigatewayApiRestOptionsGreeksResponse,
|
|
89
|
+
)
|
|
90
|
+
from .com_hellopublic_userapigateway_api_rest_options_option_greeks_type_0 import (
|
|
91
|
+
ComHellopublicUserapigatewayApiRestOptionsOptionGreeksType0,
|
|
92
|
+
)
|
|
93
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_cancel_replace_order_request import (
|
|
94
|
+
ComHellopublicUserapigatewayApiRestOrderApiCancelReplaceOrderRequest,
|
|
95
|
+
)
|
|
96
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_cancel_replace_order_request_order_type import (
|
|
97
|
+
ComHellopublicUserapigatewayApiRestOrderApiCancelReplaceOrderRequestOrderType,
|
|
98
|
+
)
|
|
99
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto import (
|
|
100
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDto,
|
|
101
|
+
)
|
|
102
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_fractional_trading import (
|
|
103
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoFractionalTrading,
|
|
104
|
+
)
|
|
105
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_option_spread_trading import (
|
|
106
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoOptionSpreadTrading,
|
|
107
|
+
)
|
|
108
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_option_trading import (
|
|
109
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoOptionTrading,
|
|
110
|
+
)
|
|
111
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_shorting_availability import (
|
|
112
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoShortingAvailability,
|
|
113
|
+
)
|
|
114
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_dto_trading import (
|
|
115
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoTrading,
|
|
116
|
+
)
|
|
117
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_instrument_response import (
|
|
118
|
+
ComHellopublicUserapigatewayApiRestOrderApiInstrumentResponse,
|
|
119
|
+
)
|
|
120
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_multileg_order_request import (
|
|
121
|
+
ComHellopublicUserapigatewayApiRestOrderApiMultilegOrderRequest,
|
|
122
|
+
)
|
|
123
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_multileg_order_request_type import (
|
|
124
|
+
ComHellopublicUserapigatewayApiRestOrderApiMultilegOrderRequestType,
|
|
125
|
+
)
|
|
126
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_request import (
|
|
127
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderRequest,
|
|
128
|
+
)
|
|
129
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_request_equity_market_session import (
|
|
130
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderRequestEquityMarketSession,
|
|
131
|
+
)
|
|
132
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_request_open_close_indicator import (
|
|
133
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOpenCloseIndicator,
|
|
134
|
+
)
|
|
135
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_request_order_side import (
|
|
136
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOrderSide,
|
|
137
|
+
)
|
|
138
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_request_order_type import (
|
|
139
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOrderType,
|
|
140
|
+
)
|
|
141
|
+
from .com_hellopublic_userapigateway_api_rest_order_api_order_result import (
|
|
142
|
+
ComHellopublicUserapigatewayApiRestOrderApiOrderResult,
|
|
143
|
+
)
|
|
144
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_leg_instrument import (
|
|
145
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayLegInstrument,
|
|
146
|
+
)
|
|
147
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_leg_instrument_type import (
|
|
148
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayLegInstrumentType,
|
|
149
|
+
)
|
|
150
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order import (
|
|
151
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrder,
|
|
152
|
+
)
|
|
153
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_instrument import (
|
|
154
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderInstrument,
|
|
155
|
+
)
|
|
156
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_instrument_type import (
|
|
157
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderInstrumentType,
|
|
158
|
+
)
|
|
159
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_leg import (
|
|
160
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderLeg,
|
|
161
|
+
)
|
|
162
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_leg_open_close_indicator import (
|
|
163
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderLegOpenCloseIndicator,
|
|
164
|
+
)
|
|
165
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_leg_side import (
|
|
166
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderLegSide,
|
|
167
|
+
)
|
|
168
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_open_close_indicator import (
|
|
169
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderOpenCloseIndicator,
|
|
170
|
+
)
|
|
171
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_side import (
|
|
172
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderSide,
|
|
173
|
+
)
|
|
174
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_status import (
|
|
175
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderStatus,
|
|
176
|
+
)
|
|
177
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_order_type import (
|
|
178
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayOrderType,
|
|
179
|
+
)
|
|
180
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_short_selling import (
|
|
181
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayShortSelling,
|
|
182
|
+
)
|
|
183
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_short_selling_availability import (
|
|
184
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayShortSellingAvailability,
|
|
185
|
+
)
|
|
186
|
+
from .com_hellopublic_userapigateway_api_rest_order_gateway_short_selling_uptick_rule import (
|
|
187
|
+
ComHellopublicUserapigatewayApiRestOrderGatewayShortSellingUptickRule,
|
|
188
|
+
)
|
|
189
|
+
from .com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details import (
|
|
190
|
+
ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetails,
|
|
191
|
+
)
|
|
192
|
+
from .com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details_bond import (
|
|
193
|
+
ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetailsBond,
|
|
194
|
+
)
|
|
195
|
+
from .com_hellopublic_userapigateway_api_rest_order_instrumentdetails_api_instrument_details_crypto import (
|
|
196
|
+
ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetailsCrypto,
|
|
197
|
+
)
|
|
198
|
+
from .com_hellopublic_userapigateway_api_rest_order_order_expiration import (
|
|
199
|
+
ComHellopublicUserapigatewayApiRestOrderOrderExpiration,
|
|
200
|
+
)
|
|
201
|
+
from .com_hellopublic_userapigateway_api_rest_order_order_expiration_time_in_force import (
|
|
202
|
+
ComHellopublicUserapigatewayApiRestOrderOrderExpirationTimeInForce,
|
|
203
|
+
)
|
|
204
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gain_type_0 import (
|
|
205
|
+
ComHellopublicUserapigatewayApiRestPortfolioGainType0,
|
|
206
|
+
)
|
|
207
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_buying_power import (
|
|
208
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayBuyingPower,
|
|
209
|
+
)
|
|
210
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_cost_basis_type_0 import (
|
|
211
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayCostBasisType0,
|
|
212
|
+
)
|
|
213
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_account_v2 import (
|
|
214
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioAccountV2,
|
|
215
|
+
)
|
|
216
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_account_v2_account_type import (
|
|
217
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioAccountV2AccountType,
|
|
218
|
+
)
|
|
219
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_equity_v2 import (
|
|
220
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioEquityV2,
|
|
221
|
+
)
|
|
222
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_equity_v2_type import (
|
|
223
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioEquityV2Type,
|
|
224
|
+
)
|
|
225
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_instrument import (
|
|
226
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioInstrument,
|
|
227
|
+
)
|
|
228
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_instrument_type import (
|
|
229
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioInstrumentType,
|
|
230
|
+
)
|
|
231
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_portfolio_position import (
|
|
232
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioPosition,
|
|
233
|
+
)
|
|
234
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_strategy import (
|
|
235
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayStrategy,
|
|
236
|
+
)
|
|
237
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_gateway_strategy_leg import (
|
|
238
|
+
ComHellopublicUserapigatewayApiRestPortfolioGatewayStrategyLeg,
|
|
239
|
+
)
|
|
240
|
+
from .com_hellopublic_userapigateway_api_rest_portfolio_price_type_0 import (
|
|
241
|
+
ComHellopublicUserapigatewayApiRestPortfolioPriceType0,
|
|
242
|
+
)
|
|
243
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_margin_impact import (
|
|
244
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayMarginImpact,
|
|
245
|
+
)
|
|
246
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_margin_requirement import (
|
|
247
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayMarginRequirement,
|
|
248
|
+
)
|
|
249
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_option_details import (
|
|
250
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayOptionDetails,
|
|
251
|
+
)
|
|
252
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_option_details_type import (
|
|
253
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayOptionDetailsType,
|
|
254
|
+
)
|
|
255
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_option_rebate import (
|
|
256
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayOptionRebate,
|
|
257
|
+
)
|
|
258
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_price_increment import (
|
|
259
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayPriceIncrement,
|
|
260
|
+
)
|
|
261
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_gateway_regulatory_fees import (
|
|
262
|
+
ComHellopublicUserapigatewayApiRestPreflightGatewayRegulatoryFees,
|
|
263
|
+
)
|
|
264
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response import (
|
|
265
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponse,
|
|
266
|
+
)
|
|
267
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response_open_close_indicator import (
|
|
268
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponseOpenCloseIndicator,
|
|
269
|
+
)
|
|
270
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_leg_response_side import (
|
|
271
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponseSide,
|
|
272
|
+
)
|
|
273
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_request import (
|
|
274
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegRequest,
|
|
275
|
+
)
|
|
276
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_request_order_type import (
|
|
277
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegRequestOrderType,
|
|
278
|
+
)
|
|
279
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_multi_leg_response import (
|
|
280
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegResponse,
|
|
281
|
+
)
|
|
282
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request import (
|
|
283
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequest,
|
|
284
|
+
)
|
|
285
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_equity_market_session import (
|
|
286
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestEquityMarketSession,
|
|
287
|
+
)
|
|
288
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_open_close_indicator import (
|
|
289
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOpenCloseIndicator,
|
|
290
|
+
)
|
|
291
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_order_side import (
|
|
292
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOrderSide,
|
|
293
|
+
)
|
|
294
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_request_order_type import (
|
|
295
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOrderType,
|
|
296
|
+
)
|
|
297
|
+
from .com_hellopublic_userapigateway_api_rest_preflight_preflight_single_leg_response import (
|
|
298
|
+
ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegResponse,
|
|
299
|
+
)
|
|
300
|
+
from .get_all_instruments_fractional_trading_filter_item import (
|
|
301
|
+
GetAllInstrumentsFractionalTradingFilterItem,
|
|
302
|
+
)
|
|
303
|
+
from .get_all_instruments_option_spread_trading_filter_item import (
|
|
304
|
+
GetAllInstrumentsOptionSpreadTradingFilterItem,
|
|
305
|
+
)
|
|
306
|
+
from .get_all_instruments_option_trading_filter_item import GetAllInstrumentsOptionTradingFilterItem
|
|
307
|
+
from .get_all_instruments_trading_filter_item import GetAllInstrumentsTradingFilterItem
|
|
308
|
+
from .get_all_instruments_type_filter_item import GetAllInstrumentsTypeFilterItem
|
|
309
|
+
from .get_instrument_type import GetInstrumentType
|
|
310
|
+
|
|
311
|
+
__all__ = (
|
|
312
|
+
"ComHellopublicHoldingsystemCoreTypesOptionPriceIncrement",
|
|
313
|
+
"ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenRequest",
|
|
314
|
+
"ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenResponse",
|
|
315
|
+
"ComHellopublicUserapiauthserviceDomainErrorErrorBody",
|
|
316
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettings",
|
|
317
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettingsAccountType",
|
|
318
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettingsBrokerageAccountType",
|
|
319
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettingsOptionsLevel",
|
|
320
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettingsResponse",
|
|
321
|
+
"ComHellopublicUserapigatewayApiRestAccountAccountSettingsTradePermissions",
|
|
322
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryResponsePage",
|
|
323
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransaction",
|
|
324
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionDirection",
|
|
325
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSecurityType",
|
|
326
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSide",
|
|
327
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionSubType",
|
|
328
|
+
"ComHellopublicUserapigatewayApiRestHistoryGatewayHistoryTransactionType",
|
|
329
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionChainRequest",
|
|
330
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionChainResponse",
|
|
331
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionExpirationsRequest",
|
|
332
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayOptionExpirationsResponse",
|
|
333
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuote",
|
|
334
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteOutcome",
|
|
335
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteRequest",
|
|
336
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteGatewayQuoteResponse",
|
|
337
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteOneDayChange",
|
|
338
|
+
"ComHellopublicUserapigatewayApiRestMarketdataQuoteOptionDetails",
|
|
339
|
+
"ComHellopublicUserapigatewayApiRestOptionsGreekResponse",
|
|
340
|
+
"ComHellopublicUserapigatewayApiRestOptionsGreeksResponse",
|
|
341
|
+
"ComHellopublicUserapigatewayApiRestOptionsOptionGreeksType0",
|
|
342
|
+
"ComHellopublicUserapigatewayApiRestOrderApiCancelReplaceOrderRequest",
|
|
343
|
+
"ComHellopublicUserapigatewayApiRestOrderApiCancelReplaceOrderRequestOrderType",
|
|
344
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDto",
|
|
345
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoFractionalTrading",
|
|
346
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoOptionSpreadTrading",
|
|
347
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoOptionTrading",
|
|
348
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoShortingAvailability",
|
|
349
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentDtoTrading",
|
|
350
|
+
"ComHellopublicUserapigatewayApiRestOrderApiInstrumentResponse",
|
|
351
|
+
"ComHellopublicUserapigatewayApiRestOrderApiMultilegOrderRequest",
|
|
352
|
+
"ComHellopublicUserapigatewayApiRestOrderApiMultilegOrderRequestType",
|
|
353
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderRequest",
|
|
354
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderRequestEquityMarketSession",
|
|
355
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOpenCloseIndicator",
|
|
356
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOrderSide",
|
|
357
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderRequestOrderType",
|
|
358
|
+
"ComHellopublicUserapigatewayApiRestOrderApiOrderResult",
|
|
359
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayLegInstrument",
|
|
360
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayLegInstrumentType",
|
|
361
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrder",
|
|
362
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderInstrument",
|
|
363
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderInstrumentType",
|
|
364
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderLeg",
|
|
365
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderLegOpenCloseIndicator",
|
|
366
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderLegSide",
|
|
367
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderOpenCloseIndicator",
|
|
368
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderSide",
|
|
369
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderStatus",
|
|
370
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayOrderType",
|
|
371
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayShortSelling",
|
|
372
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayShortSellingAvailability",
|
|
373
|
+
"ComHellopublicUserapigatewayApiRestOrderGatewayShortSellingUptickRule",
|
|
374
|
+
"ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetails",
|
|
375
|
+
"ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetailsBond",
|
|
376
|
+
"ComHellopublicUserapigatewayApiRestOrderInstrumentdetailsApiInstrumentDetailsCrypto",
|
|
377
|
+
"ComHellopublicUserapigatewayApiRestOrderOrderExpiration",
|
|
378
|
+
"ComHellopublicUserapigatewayApiRestOrderOrderExpirationTimeInForce",
|
|
379
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGainType0",
|
|
380
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayBuyingPower",
|
|
381
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayCostBasisType0",
|
|
382
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioAccountV2",
|
|
383
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioAccountV2AccountType",
|
|
384
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioEquityV2",
|
|
385
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioEquityV2Type",
|
|
386
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioInstrument",
|
|
387
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioInstrumentType",
|
|
388
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayPortfolioPosition",
|
|
389
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayStrategy",
|
|
390
|
+
"ComHellopublicUserapigatewayApiRestPortfolioGatewayStrategyLeg",
|
|
391
|
+
"ComHellopublicUserapigatewayApiRestPortfolioPriceType0",
|
|
392
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayMarginImpact",
|
|
393
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayMarginRequirement",
|
|
394
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayOptionDetails",
|
|
395
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayOptionDetailsType",
|
|
396
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayOptionRebate",
|
|
397
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayPriceIncrement",
|
|
398
|
+
"ComHellopublicUserapigatewayApiRestPreflightGatewayRegulatoryFees",
|
|
399
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponse",
|
|
400
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponseOpenCloseIndicator",
|
|
401
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightLegResponseSide",
|
|
402
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegRequest",
|
|
403
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegRequestOrderType",
|
|
404
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightMultiLegResponse",
|
|
405
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequest",
|
|
406
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestEquityMarketSession",
|
|
407
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOpenCloseIndicator",
|
|
408
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOrderSide",
|
|
409
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegRequestOrderType",
|
|
410
|
+
"ComHellopublicUserapigatewayApiRestPreflightPreflightSingleLegResponse",
|
|
411
|
+
"GetAllInstrumentsFractionalTradingFilterItem",
|
|
412
|
+
"GetAllInstrumentsOptionSpreadTradingFilterItem",
|
|
413
|
+
"GetAllInstrumentsOptionTradingFilterItem",
|
|
414
|
+
"GetAllInstrumentsTradingFilterItem",
|
|
415
|
+
"GetAllInstrumentsTypeFilterItem",
|
|
416
|
+
"GetInstrumentType",
|
|
417
|
+
)
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from collections.abc import Mapping
|
|
4
|
+
from typing import Any, TypeVar
|
|
5
|
+
|
|
6
|
+
from attrs import define as _attrs_define
|
|
7
|
+
from attrs import field as _attrs_field
|
|
8
|
+
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="ComHellopublicHoldingsystemCoreTypesOptionPriceIncrement")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class ComHellopublicHoldingsystemCoreTypesOptionPriceIncrement:
|
|
16
|
+
"""Record representing price increments below and above $3.
|
|
17
|
+
|
|
18
|
+
Attributes:
|
|
19
|
+
increment_below_3 (str | Unset):
|
|
20
|
+
increment_above_3 (str | Unset):
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
increment_below_3: str | Unset = UNSET
|
|
24
|
+
increment_above_3: str | Unset = UNSET
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
increment_below_3 = self.increment_below_3
|
|
29
|
+
|
|
30
|
+
increment_above_3 = self.increment_above_3
|
|
31
|
+
|
|
32
|
+
field_dict: dict[str, Any] = {}
|
|
33
|
+
field_dict.update(self.additional_properties)
|
|
34
|
+
field_dict.update({})
|
|
35
|
+
if increment_below_3 is not UNSET:
|
|
36
|
+
field_dict["incrementBelow3"] = increment_below_3
|
|
37
|
+
if increment_above_3 is not UNSET:
|
|
38
|
+
field_dict["incrementAbove3"] = increment_above_3
|
|
39
|
+
|
|
40
|
+
return field_dict
|
|
41
|
+
|
|
42
|
+
@classmethod
|
|
43
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
44
|
+
d = dict(src_dict)
|
|
45
|
+
increment_below_3 = d.pop("incrementBelow3", UNSET)
|
|
46
|
+
|
|
47
|
+
increment_above_3 = d.pop("incrementAbove3", UNSET)
|
|
48
|
+
|
|
49
|
+
com_hellopublic_holdingsystem_core_types_option_price_increment = cls(
|
|
50
|
+
increment_below_3=increment_below_3,
|
|
51
|
+
increment_above_3=increment_above_3,
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
com_hellopublic_holdingsystem_core_types_option_price_increment.additional_properties = d
|
|
55
|
+
return com_hellopublic_holdingsystem_core_types_option_price_increment
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
def additional_keys(self) -> list[str]:
|
|
59
|
+
return list(self.additional_properties.keys())
|
|
60
|
+
|
|
61
|
+
def __getitem__(self, key: str) -> Any:
|
|
62
|
+
return self.additional_properties[key]
|
|
63
|
+
|
|
64
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
65
|
+
self.additional_properties[key] = value
|
|
66
|
+
|
|
67
|
+
def __delitem__(self, key: str) -> None:
|
|
68
|
+
del self.additional_properties[key]
|
|
69
|
+
|
|
70
|
+
def __contains__(self, key: str) -> bool:
|
|
71
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from collections.abc import Mapping
|
|
4
|
+
from typing import Any, TypeVar, cast
|
|
5
|
+
|
|
6
|
+
from attrs import define as _attrs_define
|
|
7
|
+
from attrs import field as _attrs_field
|
|
8
|
+
|
|
9
|
+
from ..types import UNSET, Unset
|
|
10
|
+
|
|
11
|
+
T = TypeVar("T", bound="ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenRequest")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@_attrs_define
|
|
15
|
+
class ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenRequest:
|
|
16
|
+
"""
|
|
17
|
+
Attributes:
|
|
18
|
+
secret (str): A valid personal secret
|
|
19
|
+
validity_in_minutes (int | None | Unset): Validity of the access token to be issued in minutes. Defaults to 15
|
|
20
|
+
minutes.
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
secret: str
|
|
24
|
+
validity_in_minutes: int | None | Unset = UNSET
|
|
25
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
26
|
+
|
|
27
|
+
def to_dict(self) -> dict[str, Any]:
|
|
28
|
+
secret = self.secret
|
|
29
|
+
|
|
30
|
+
validity_in_minutes: int | None | Unset
|
|
31
|
+
if isinstance(self.validity_in_minutes, Unset):
|
|
32
|
+
validity_in_minutes = UNSET
|
|
33
|
+
else:
|
|
34
|
+
validity_in_minutes = self.validity_in_minutes
|
|
35
|
+
|
|
36
|
+
field_dict: dict[str, Any] = {}
|
|
37
|
+
field_dict.update(self.additional_properties)
|
|
38
|
+
field_dict.update(
|
|
39
|
+
{
|
|
40
|
+
"secret": secret,
|
|
41
|
+
}
|
|
42
|
+
)
|
|
43
|
+
if validity_in_minutes is not UNSET:
|
|
44
|
+
field_dict["validityInMinutes"] = validity_in_minutes
|
|
45
|
+
|
|
46
|
+
return field_dict
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
50
|
+
d = dict(src_dict)
|
|
51
|
+
secret = d.pop("secret")
|
|
52
|
+
|
|
53
|
+
def _parse_validity_in_minutes(data: object) -> int | None | Unset:
|
|
54
|
+
if data is None:
|
|
55
|
+
return data
|
|
56
|
+
if isinstance(data, Unset):
|
|
57
|
+
return data
|
|
58
|
+
return cast(int | None | Unset, data)
|
|
59
|
+
|
|
60
|
+
validity_in_minutes = _parse_validity_in_minutes(d.pop("validityInMinutes", UNSET))
|
|
61
|
+
|
|
62
|
+
com_hellopublic_userapiauthservice_api_personal_create_access_token_request = cls(
|
|
63
|
+
secret=secret,
|
|
64
|
+
validity_in_minutes=validity_in_minutes,
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
com_hellopublic_userapiauthservice_api_personal_create_access_token_request.additional_properties = d
|
|
68
|
+
return com_hellopublic_userapiauthservice_api_personal_create_access_token_request
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
def additional_keys(self) -> list[str]:
|
|
72
|
+
return list(self.additional_properties.keys())
|
|
73
|
+
|
|
74
|
+
def __getitem__(self, key: str) -> Any:
|
|
75
|
+
return self.additional_properties[key]
|
|
76
|
+
|
|
77
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
78
|
+
self.additional_properties[key] = value
|
|
79
|
+
|
|
80
|
+
def __delitem__(self, key: str) -> None:
|
|
81
|
+
del self.additional_properties[key]
|
|
82
|
+
|
|
83
|
+
def __contains__(self, key: str) -> bool:
|
|
84
|
+
return key in self.additional_properties
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from collections.abc import Mapping
|
|
4
|
+
from typing import Any, TypeVar
|
|
5
|
+
|
|
6
|
+
from attrs import define as _attrs_define
|
|
7
|
+
from attrs import field as _attrs_field
|
|
8
|
+
|
|
9
|
+
T = TypeVar("T", bound="ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenResponse")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@_attrs_define
|
|
13
|
+
class ComHellopublicUserapiauthserviceApiPersonalCreateAccessTokenResponse:
|
|
14
|
+
"""
|
|
15
|
+
Attributes:
|
|
16
|
+
access_token (str):
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
access_token: str
|
|
20
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
21
|
+
|
|
22
|
+
def to_dict(self) -> dict[str, Any]:
|
|
23
|
+
access_token = self.access_token
|
|
24
|
+
|
|
25
|
+
field_dict: dict[str, Any] = {}
|
|
26
|
+
field_dict.update(self.additional_properties)
|
|
27
|
+
field_dict.update(
|
|
28
|
+
{
|
|
29
|
+
"accessToken": access_token,
|
|
30
|
+
}
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
return field_dict
|
|
34
|
+
|
|
35
|
+
@classmethod
|
|
36
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
37
|
+
d = dict(src_dict)
|
|
38
|
+
access_token = d.pop("accessToken")
|
|
39
|
+
|
|
40
|
+
com_hellopublic_userapiauthservice_api_personal_create_access_token_response = cls(
|
|
41
|
+
access_token=access_token,
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
com_hellopublic_userapiauthservice_api_personal_create_access_token_response.additional_properties = d
|
|
45
|
+
return com_hellopublic_userapiauthservice_api_personal_create_access_token_response
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
def additional_keys(self) -> list[str]:
|
|
49
|
+
return list(self.additional_properties.keys())
|
|
50
|
+
|
|
51
|
+
def __getitem__(self, key: str) -> Any:
|
|
52
|
+
return self.additional_properties[key]
|
|
53
|
+
|
|
54
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
55
|
+
self.additional_properties[key] = value
|
|
56
|
+
|
|
57
|
+
def __delitem__(self, key: str) -> None:
|
|
58
|
+
del self.additional_properties[key]
|
|
59
|
+
|
|
60
|
+
def __contains__(self, key: str) -> bool:
|
|
61
|
+
return key in self.additional_properties
|