gate-api 7.2.71__tar.gz → 7.2.78__tar.gz
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.
- {gate_api-7.2.71 → gate_api-7.2.78}/PKG-INFO +13 -7
- {gate_api-7.2.71 → gate_api-7.2.78}/README.md +12 -6
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/__init__.py +7 -1
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/bot_api.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/cross_ex_api.py +13 -8
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/p2p_api.py +4 -9
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/wallet_api.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api_client.py +1 -1
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/configuration.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/__init__.py +6 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_detail_request.py +2 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_list_request.py +4 -4
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_update_status.py +10 -4
- gate_api-7.2.78/gate_api/models/ai_hub_portfolio_base_info.py +261 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_detail_data.py +10 -16
- gate_api-7.2.78/gate_api/models/ai_hub_portfolio_metrics.py +433 -0
- gate_api-7.2.78/gate_api/models/ai_hub_portfolio_position.py +251 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_recommendation.py +6 -6
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_order.py +22 -16
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/confirm_payment.py +22 -19
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/confirm_receipt.py +18 -16
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_create_params.py +4 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account.py +2 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_book_record.py +18 -18
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order.py +52 -50
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_chats_list_request.py +8 -9
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_completed_transaction_list_request.py +12 -12
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_counterparty_user_info_request.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_myself_payment_request.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_pending_transaction_list_request.py +14 -8
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_transaction_details_request.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/infinite_grid_create_params.py +8 -6
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_ads_list_request.py +6 -6
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ad_detail.py +41 -153
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_list_item.py +4 -4
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_update_status_result.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_list_result.py +4 -4
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_message.py +16 -72
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_message_payload.py +12 -12
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_counterparty_user_info.py +10 -10
- gate_api-7.2.78/gate_api/models/p2p_merchant_books_place_biz_push_order_response.py +263 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_user_info.py +16 -16
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ad.py +30 -30
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_method_account.py +7 -7
- gate_api-7.2.78/gate_api/models/p2p_transaction_action_response.py +263 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_detail.py +98 -770
- gate_api-7.2.78/gate_api/models/p2p_transaction_detail_pay_others.py +291 -0
- gate_api-7.2.78/gate_api/models/p2p_transaction_list_item.py +765 -0
- gate_api-7.2.78/gate_api/models/p2p_transaction_list_result_pay_others.py +151 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_biz_push_order.py +87 -81
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/send_chat_message_request.py +10 -4
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_account_book.py +2 -2
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_martingale_create_params.py +50 -16
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbol.py +28 -28
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/upload_chat_file.py +10 -4
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/PKG-INFO +13 -7
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/SOURCES.txt +6 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/setup.py +1 -1
- gate_api-7.2.71/gate_api/models/p2p_transaction_action_response.py +0 -173
- gate_api-7.2.71/gate_api/models/p2p_transaction_list_item.py +0 -1801
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/__init__.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/account_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/activity_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/alpha_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/assetswap_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/coupon_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/delivery_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/earn_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/earn_uni_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/flash_swap_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/futures_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/launch_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/margin_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/margin_uni_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/multi_collateral_loan_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/options_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/otc_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/rebate_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/spot_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/square_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/sub_account_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/trad_fi_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/unified_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/welfare_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/withdrawal_api.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/exceptions.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_book_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_detail_key.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_key_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_key_info_perms.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_rate_limit.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/accounts_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_commission.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_commission_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_transaction.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_transaction_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_create_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_create_success_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_discover_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_discover_success_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_detail_success_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_success_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_success_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/alpha_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/alpha_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/amend_options_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_config.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_evaluate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_list_assets.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_create_v1.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_list_v1.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_preview_v1.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_query_v1.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_reward_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_reward_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_task_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data_tasks.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_get_user_identity_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/asset_list_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/asset_swap_frontend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_coins_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_config_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount_items.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_order_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_add_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create_items.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_list_info_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_record_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_records_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_stop.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_update.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_portfolio_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_repay_setting.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/award_list_struct.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/award_list_struct_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/base_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_amend_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_amend_order_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_funding_rates_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_funding_rates_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_futures_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/borrow_currency_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission_sub_broker_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_transaction.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_transaction_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_batch_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_order_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_activity_cd01.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_activity_rules_cd03.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_airdrop_record_cd06.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_error_cd01.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_participation_record_cd05.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_prize_pool_cd03.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_register_req_cd02.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_register_resp_cd02.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_cd03.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_progress_cd04.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_progress_item_cd04.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/claim_reward_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/claim_task_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_adjust.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_adjust_res.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency_res.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_current_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_fix_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_ltv.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_direction.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_stat.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/convert_currencies_v2_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/convert_small_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_futures_task.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_options_task.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_spot_task.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_lend_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_lend_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_pre_redeem_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_multi_collateral_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order2.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order2_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order_v4.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_param.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_transaction.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_uni_lend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_uni_loan.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_user_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_user_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_loan.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_repayment.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_asset.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_update_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_update_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_adl_rank.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_close_position_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_coin_discount_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_quote_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_quote_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_historical_margin_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_historical_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_interest_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_leverage_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_leverage_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_margin_interest_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_margin_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_action_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_update_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_risk_limit.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_risk_limit_tier.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_special_fee.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_coin.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_chain.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_pair.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_quota.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/debit_fee.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delete_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_candlestick.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_contract.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_limit_risk_tiers.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_liquidate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_my_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order_book_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_position_close.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_settlement.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/deposit_address.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/deposit_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/discover_scene.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_orders.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_plans.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_modify_order_reinvest_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_order_refund_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_order_refund_preview.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_project_recommend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/earn_fixed_term_pre_redeem_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility_response_all_of.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/err_code_msg.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/error_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/evaluate_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/evaluate_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ex_skill_claim_reward_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ex_skill_claim_task_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_bonus_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_coupon_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_history_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_lend_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_lend_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product_simple.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_currency_pair.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_error_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_create_param.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_preview_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_preview_param.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_preview_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/funding_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/funding_rate_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/future_cancel_order_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_auto_deleverage.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_batch_amend_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_bbo_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_candlestick.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_direction.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_fee.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_grid_create_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_grid_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_index_constituents.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_initial_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_leverage.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_limit_risk_tiers.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_liq_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_liquidate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_amendment.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_book_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_timerange.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_position_cross_mode.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_premium_index.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_price_trigger.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_price_triggered_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_risk_limit_tier.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_update_price_triggered_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_beginner_task_list_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_my_activity_entry_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_my_activity_entry_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_coupon_detail_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_coupon_detail_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_identity_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_error_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_project_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_user_airdrop_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_user_order_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/index_constituent.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/infinite_grid_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/inline_response200.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/insurance_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ladder_apr.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_create_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_error_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_pledge_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_project.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_reward_pool.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_reward_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ledger_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/liquidate_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_history_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_history_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_lends_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_lends_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_by_asset_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_by_asset_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_live.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_live_host.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_video.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response_data_items.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_help_url.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_jump_url.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_progress_config.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_grid_create_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_grid_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_leverage_tier.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_market_leverage.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_tiers.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_transferable.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/max_uni_borrowable.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_futures_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_futures_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_margin_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_options_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_options_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_risk_unit.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_spot_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_spot_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mt5_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mt5_account_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_chain_address_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_record_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_loan_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_loan_repay_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_repay_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_repay_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_futures_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_futures_trade_time_range.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/open_orders.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_account_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_candlestick.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_contract.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_mmp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_mmp_reset.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_my_settlements.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_my_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_order_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position_close.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position_close_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_settlement.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_underlying.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_underlying_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_book.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_cancel.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_create_v1_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_create_v1_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_struct.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_struct_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_v1_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_patch.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_preview_v1_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_preview_v1_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_action_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_mark_order_paid_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_detail_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_crypto_currency_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_fiat_currency_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_create_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_user_default_bank.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_user_default_bank_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/other_contact.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ad_detail_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_update_status_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_counterparty_user_info_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_market_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_user_info_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ads_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ads_list_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_method_group.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_methods_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_send_chat_message_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_send_chat_message_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_convert_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_detail_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_list_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_time_marker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_upload_chat_file_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_upload_chat_file_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application_response_all_of.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_commission_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated_response_all_of.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_sub.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_sub_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_transaction_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/patch_uni_lend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_dual_investment_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_dual_investment_order_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_close.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_close_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_close_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_realized_pnl_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_timerange.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_from_param.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_order_detail.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_to_param.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/profit_loss_range.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/quote_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/quote_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/rebate_user_info.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend_v2_scheme.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend_v2_strategy.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/redeem_launch_pool_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/redeem_v4.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_currency_res.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_multi_loan.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_left_interest.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_repaid_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_total_interest.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/risk_units.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/saved_address.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/small_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/small_balance_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_currency_chain.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_fee.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_grid_create_params.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_grid_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_insurance_history.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_martingale_create_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_put_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_trigger.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_triggered_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stop_all_trail_orders.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stop_trail_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stp_group.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stp_group_user.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/strategy_type.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_cross_margin_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_futures_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_key.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_key_perms.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_margin_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_to_sub_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_transfer.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_transfer_record_item.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_cross_margin_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_user_mode.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/swap_coin.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/swap_coin_struct.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/system_time.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/tokens.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/total_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_close_position_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_error.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_order_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_order_update_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_position_update_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_ticker.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_ticker_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_transaction_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trade.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trade_fee.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_change_log.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_change_log_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_detail_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_list_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_config.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_id.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list_data_list.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transfer.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transfer_order_status.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transferables_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trigger_order_response.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trigger_time.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_withdrawal.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_withdrawal_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_chart_point.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency_interest.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency_pair.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_estimated_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_interest_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend_interest.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan_interest_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_account.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_balance.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_borrowable.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_collateral_req.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_collateral_res.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_currency.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_discount.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_discount_tiers.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_history_loan_rate.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_history_loan_rate_rates.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_leverage_config.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_leverage_setting.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan_result.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_margin_tiers.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_mode_set.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_portfolio_input.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_portfolio_output.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_risk_units.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_settings.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_transferable.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_dual_comp_position_cross_mode_request.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_order_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_position.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_trail_order.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_asset_resp.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_asset_resp_data.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_sub.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_sub_relation.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdraw_status.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdrawal_record.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdrawals_del.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/rest.py +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/dependency_links.txt +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/requires.txt +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/top_level.txt +0 -0
- {gate_api-7.2.71 → gate_api-7.2.78}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gate-api
|
|
3
|
-
Version: 7.2.
|
|
3
|
+
Version: 7.2.78
|
|
4
4
|
Summary: Gate API
|
|
5
5
|
Home-page: https://github.com/gate/gateapi-python
|
|
6
6
|
Author: Gate API support
|
|
@@ -32,8 +32,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
|
|
|
32
32
|
|
|
33
33
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
34
34
|
|
|
35
|
-
- API version: v4.106.
|
|
36
|
-
- Package version: 7.2.
|
|
35
|
+
- API version: v4.106.78
|
|
36
|
+
- Package version: 7.2.78
|
|
37
37
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
38
38
|
For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
|
|
39
39
|
|
|
@@ -144,9 +144,9 @@ Class | Method | HTTP request | Description
|
|
|
144
144
|
*ActivityApi* | [**get_my_activity_entry**](docs/ActivityApi.md#get_my_activity_entry) | **GET** /rewards/activity/my-activity-entry | My activity entry
|
|
145
145
|
*ActivityApi* | [**list_activities**](docs/ActivityApi.md#list_activities) | **GET** /rewards/activity/activity-list | Recommended activity list
|
|
146
146
|
*ActivityApi* | [**list_activity_types**](docs/ActivityApi.md#list_activity_types) | **GET** /rewards/activity/activity-type | Activity type list
|
|
147
|
-
*CrossExApi* | [**list_crossex_rule_symbols**](docs/CrossExApi.md#list_crossex_rule_symbols) | **GET** /crossex/rule/symbols |
|
|
148
|
-
*CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits |
|
|
149
|
-
*CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin |
|
|
147
|
+
*CrossExApi* | [**list_crossex_rule_symbols**](docs/CrossExApi.md#list_crossex_rule_symbols) | **GET** /crossex/rule/symbols | 查询币对信息
|
|
148
|
+
*CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits | 查询风险限额信息
|
|
149
|
+
*CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin | 查询划转币种支持
|
|
150
150
|
*CrossExApi* | [**list_crossex_transfers**](docs/CrossExApi.md#list_crossex_transfers) | **GET** /crossex/transfers | Query Fund Transfer History
|
|
151
151
|
*CrossExApi* | [**create_crossex_transfer**](docs/CrossExApi.md#create_crossex_transfer) | **POST** /crossex/transfers | Fund Transfer
|
|
152
152
|
*CrossExApi* | [**create_crossex_order**](docs/CrossExApi.md#create_crossex_order) | **POST** /crossex/orders | Create an order
|
|
@@ -174,7 +174,7 @@ Class | Method | HTTP request | Description
|
|
|
174
174
|
*CrossExApi* | [**list_crossex_history_margin_interests**](docs/CrossExApi.md#list_crossex_history_margin_interests) | **GET** /crossex/history_margin_interests | Query Leveraged Interest Deduction History
|
|
175
175
|
*CrossExApi* | [**list_crossex_history_trades**](docs/CrossExApi.md#list_crossex_history_trades) | **GET** /crossex/history_trades | queryfilledhistory
|
|
176
176
|
*CrossExApi* | [**list_crossex_account_book**](docs/CrossExApi.md#list_crossex_account_book) | **GET** /crossex/account_book | Query Account Asset Change History
|
|
177
|
-
*CrossExApi* | [**list_crossex_coin_discount_rate**](docs/CrossExApi.md#list_crossex_coin_discount_rate) | **GET** /crossex/coin_discount_rate | Query
|
|
177
|
+
*CrossExApi* | [**list_crossex_coin_discount_rate**](docs/CrossExApi.md#list_crossex_coin_discount_rate) | **GET** /crossex/coin_discount_rate | Query Currency Discount Rate
|
|
178
178
|
*EarnUniApi* | [**list_uni_currencies**](docs/EarnUniApi.md#list_uni_currencies) | **GET** /earn/uni/currencies | Query lending currency list
|
|
179
179
|
*EarnUniApi* | [**get_uni_currency**](docs/EarnUniApi.md#get_uni_currency) | **GET** /earn/uni/currencies/{currency} | Query single lending currency details
|
|
180
180
|
*EarnUniApi* | [**list_user_uni_lends**](docs/EarnUniApi.md#list_user_uni_lends) | **GET** /earn/uni/lends | Query user's lending order list
|
|
@@ -596,8 +596,11 @@ Class | Method | HTTP request | Description
|
|
|
596
596
|
- [AIHubCreateSuccessResponse](docs/AIHubCreateSuccessResponse.md)
|
|
597
597
|
- [AIHubDiscoverData](docs/AIHubDiscoverData.md)
|
|
598
598
|
- [AIHubDiscoverSuccessResponse](docs/AIHubDiscoverSuccessResponse.md)
|
|
599
|
+
- [AIHubPortfolioBaseInfo](docs/AIHubPortfolioBaseInfo.md)
|
|
599
600
|
- [AIHubPortfolioDetailData](docs/AIHubPortfolioDetailData.md)
|
|
600
601
|
- [AIHubPortfolioDetailSuccessResponse](docs/AIHubPortfolioDetailSuccessResponse.md)
|
|
602
|
+
- [AIHubPortfolioMetrics](docs/AIHubPortfolioMetrics.md)
|
|
603
|
+
- [AIHubPortfolioPosition](docs/AIHubPortfolioPosition.md)
|
|
601
604
|
- [AIHubPortfolioRunningData](docs/AIHubPortfolioRunningData.md)
|
|
602
605
|
- [AIHubPortfolioRunningItem](docs/AIHubPortfolioRunningItem.md)
|
|
603
606
|
- [AIHubPortfolioRunningSuccessResponse](docs/AIHubPortfolioRunningSuccessResponse.md)
|
|
@@ -1050,6 +1053,7 @@ Class | Method | HTTP request | Description
|
|
|
1050
1053
|
- [P2pChatMessagePayload](docs/P2pChatMessagePayload.md)
|
|
1051
1054
|
- [P2pCounterpartyUserInfo](docs/P2pCounterpartyUserInfo.md)
|
|
1052
1055
|
- [P2pCounterpartyUserInfoResponse](docs/P2pCounterpartyUserInfoResponse.md)
|
|
1056
|
+
- [P2pMerchantBooksPlaceBizPushOrderResponse](docs/P2pMerchantBooksPlaceBizPushOrderResponse.md)
|
|
1053
1057
|
- [P2pMerchantMarketInfo](docs/P2pMerchantMarketInfo.md)
|
|
1054
1058
|
- [P2pMerchantUserInfo](docs/P2pMerchantUserInfo.md)
|
|
1055
1059
|
- [P2pMerchantUserInfoResponse](docs/P2pMerchantUserInfoResponse.md)
|
|
@@ -1064,10 +1068,12 @@ Class | Method | HTTP request | Description
|
|
|
1064
1068
|
- [P2pTransactionActionResponse](docs/P2pTransactionActionResponse.md)
|
|
1065
1069
|
- [P2pTransactionConvertInfo](docs/P2pTransactionConvertInfo.md)
|
|
1066
1070
|
- [P2pTransactionDetail](docs/P2pTransactionDetail.md)
|
|
1071
|
+
- [P2pTransactionDetailPayOthers](docs/P2pTransactionDetailPayOthers.md)
|
|
1067
1072
|
- [P2pTransactionDetailResponse](docs/P2pTransactionDetailResponse.md)
|
|
1068
1073
|
- [P2pTransactionListItem](docs/P2pTransactionListItem.md)
|
|
1069
1074
|
- [P2pTransactionListResponse](docs/P2pTransactionListResponse.md)
|
|
1070
1075
|
- [P2pTransactionListResult](docs/P2pTransactionListResult.md)
|
|
1076
|
+
- [P2pTransactionListResultPayOthers](docs/P2pTransactionListResultPayOthers.md)
|
|
1071
1077
|
- [P2pTransactionTimeMarker](docs/P2pTransactionTimeMarker.md)
|
|
1072
1078
|
- [P2pUploadChatFileResponse](docs/P2pUploadChatFileResponse.md)
|
|
1073
1079
|
- [P2pUploadChatFileResult](docs/P2pUploadChatFileResult.md)
|
|
@@ -4,8 +4,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
|
|
|
4
4
|
|
|
5
5
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
6
6
|
|
|
7
|
-
- API version: v4.106.
|
|
8
|
-
- Package version: 7.2.
|
|
7
|
+
- API version: v4.106.78
|
|
8
|
+
- Package version: 7.2.78
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
|
|
11
11
|
|
|
@@ -116,9 +116,9 @@ Class | Method | HTTP request | Description
|
|
|
116
116
|
*ActivityApi* | [**get_my_activity_entry**](docs/ActivityApi.md#get_my_activity_entry) | **GET** /rewards/activity/my-activity-entry | My activity entry
|
|
117
117
|
*ActivityApi* | [**list_activities**](docs/ActivityApi.md#list_activities) | **GET** /rewards/activity/activity-list | Recommended activity list
|
|
118
118
|
*ActivityApi* | [**list_activity_types**](docs/ActivityApi.md#list_activity_types) | **GET** /rewards/activity/activity-type | Activity type list
|
|
119
|
-
*CrossExApi* | [**list_crossex_rule_symbols**](docs/CrossExApi.md#list_crossex_rule_symbols) | **GET** /crossex/rule/symbols |
|
|
120
|
-
*CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits |
|
|
121
|
-
*CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin |
|
|
119
|
+
*CrossExApi* | [**list_crossex_rule_symbols**](docs/CrossExApi.md#list_crossex_rule_symbols) | **GET** /crossex/rule/symbols | 查询币对信息
|
|
120
|
+
*CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits | 查询风险限额信息
|
|
121
|
+
*CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin | 查询划转币种支持
|
|
122
122
|
*CrossExApi* | [**list_crossex_transfers**](docs/CrossExApi.md#list_crossex_transfers) | **GET** /crossex/transfers | Query Fund Transfer History
|
|
123
123
|
*CrossExApi* | [**create_crossex_transfer**](docs/CrossExApi.md#create_crossex_transfer) | **POST** /crossex/transfers | Fund Transfer
|
|
124
124
|
*CrossExApi* | [**create_crossex_order**](docs/CrossExApi.md#create_crossex_order) | **POST** /crossex/orders | Create an order
|
|
@@ -146,7 +146,7 @@ Class | Method | HTTP request | Description
|
|
|
146
146
|
*CrossExApi* | [**list_crossex_history_margin_interests**](docs/CrossExApi.md#list_crossex_history_margin_interests) | **GET** /crossex/history_margin_interests | Query Leveraged Interest Deduction History
|
|
147
147
|
*CrossExApi* | [**list_crossex_history_trades**](docs/CrossExApi.md#list_crossex_history_trades) | **GET** /crossex/history_trades | queryfilledhistory
|
|
148
148
|
*CrossExApi* | [**list_crossex_account_book**](docs/CrossExApi.md#list_crossex_account_book) | **GET** /crossex/account_book | Query Account Asset Change History
|
|
149
|
-
*CrossExApi* | [**list_crossex_coin_discount_rate**](docs/CrossExApi.md#list_crossex_coin_discount_rate) | **GET** /crossex/coin_discount_rate | Query
|
|
149
|
+
*CrossExApi* | [**list_crossex_coin_discount_rate**](docs/CrossExApi.md#list_crossex_coin_discount_rate) | **GET** /crossex/coin_discount_rate | Query Currency Discount Rate
|
|
150
150
|
*EarnUniApi* | [**list_uni_currencies**](docs/EarnUniApi.md#list_uni_currencies) | **GET** /earn/uni/currencies | Query lending currency list
|
|
151
151
|
*EarnUniApi* | [**get_uni_currency**](docs/EarnUniApi.md#get_uni_currency) | **GET** /earn/uni/currencies/{currency} | Query single lending currency details
|
|
152
152
|
*EarnUniApi* | [**list_user_uni_lends**](docs/EarnUniApi.md#list_user_uni_lends) | **GET** /earn/uni/lends | Query user's lending order list
|
|
@@ -568,8 +568,11 @@ Class | Method | HTTP request | Description
|
|
|
568
568
|
- [AIHubCreateSuccessResponse](docs/AIHubCreateSuccessResponse.md)
|
|
569
569
|
- [AIHubDiscoverData](docs/AIHubDiscoverData.md)
|
|
570
570
|
- [AIHubDiscoverSuccessResponse](docs/AIHubDiscoverSuccessResponse.md)
|
|
571
|
+
- [AIHubPortfolioBaseInfo](docs/AIHubPortfolioBaseInfo.md)
|
|
571
572
|
- [AIHubPortfolioDetailData](docs/AIHubPortfolioDetailData.md)
|
|
572
573
|
- [AIHubPortfolioDetailSuccessResponse](docs/AIHubPortfolioDetailSuccessResponse.md)
|
|
574
|
+
- [AIHubPortfolioMetrics](docs/AIHubPortfolioMetrics.md)
|
|
575
|
+
- [AIHubPortfolioPosition](docs/AIHubPortfolioPosition.md)
|
|
573
576
|
- [AIHubPortfolioRunningData](docs/AIHubPortfolioRunningData.md)
|
|
574
577
|
- [AIHubPortfolioRunningItem](docs/AIHubPortfolioRunningItem.md)
|
|
575
578
|
- [AIHubPortfolioRunningSuccessResponse](docs/AIHubPortfolioRunningSuccessResponse.md)
|
|
@@ -1022,6 +1025,7 @@ Class | Method | HTTP request | Description
|
|
|
1022
1025
|
- [P2pChatMessagePayload](docs/P2pChatMessagePayload.md)
|
|
1023
1026
|
- [P2pCounterpartyUserInfo](docs/P2pCounterpartyUserInfo.md)
|
|
1024
1027
|
- [P2pCounterpartyUserInfoResponse](docs/P2pCounterpartyUserInfoResponse.md)
|
|
1028
|
+
- [P2pMerchantBooksPlaceBizPushOrderResponse](docs/P2pMerchantBooksPlaceBizPushOrderResponse.md)
|
|
1025
1029
|
- [P2pMerchantMarketInfo](docs/P2pMerchantMarketInfo.md)
|
|
1026
1030
|
- [P2pMerchantUserInfo](docs/P2pMerchantUserInfo.md)
|
|
1027
1031
|
- [P2pMerchantUserInfoResponse](docs/P2pMerchantUserInfoResponse.md)
|
|
@@ -1036,10 +1040,12 @@ Class | Method | HTTP request | Description
|
|
|
1036
1040
|
- [P2pTransactionActionResponse](docs/P2pTransactionActionResponse.md)
|
|
1037
1041
|
- [P2pTransactionConvertInfo](docs/P2pTransactionConvertInfo.md)
|
|
1038
1042
|
- [P2pTransactionDetail](docs/P2pTransactionDetail.md)
|
|
1043
|
+
- [P2pTransactionDetailPayOthers](docs/P2pTransactionDetailPayOthers.md)
|
|
1039
1044
|
- [P2pTransactionDetailResponse](docs/P2pTransactionDetailResponse.md)
|
|
1040
1045
|
- [P2pTransactionListItem](docs/P2pTransactionListItem.md)
|
|
1041
1046
|
- [P2pTransactionListResponse](docs/P2pTransactionListResponse.md)
|
|
1042
1047
|
- [P2pTransactionListResult](docs/P2pTransactionListResult.md)
|
|
1048
|
+
- [P2pTransactionListResultPayOthers](docs/P2pTransactionListResultPayOthers.md)
|
|
1043
1049
|
- [P2pTransactionTimeMarker](docs/P2pTransactionTimeMarker.md)
|
|
1044
1050
|
- [P2pUploadChatFileResponse](docs/P2pUploadChatFileResponse.md)
|
|
1045
1051
|
- [P2pUploadChatFileResult](docs/P2pUploadChatFileResult.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
from __future__ import absolute_import
|
|
16
16
|
|
|
17
|
-
__version__ = "7.2.
|
|
17
|
+
__version__ = "7.2.78"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from gate_api.api.activity_api import ActivityApi
|
|
@@ -59,8 +59,11 @@ from gate_api.models.ai_hub_create_data import AIHubCreateData
|
|
|
59
59
|
from gate_api.models.ai_hub_create_success_response import AIHubCreateSuccessResponse
|
|
60
60
|
from gate_api.models.ai_hub_discover_data import AIHubDiscoverData
|
|
61
61
|
from gate_api.models.ai_hub_discover_success_response import AIHubDiscoverSuccessResponse
|
|
62
|
+
from gate_api.models.ai_hub_portfolio_base_info import AIHubPortfolioBaseInfo
|
|
62
63
|
from gate_api.models.ai_hub_portfolio_detail_data import AIHubPortfolioDetailData
|
|
63
64
|
from gate_api.models.ai_hub_portfolio_detail_success_response import AIHubPortfolioDetailSuccessResponse
|
|
65
|
+
from gate_api.models.ai_hub_portfolio_metrics import AIHubPortfolioMetrics
|
|
66
|
+
from gate_api.models.ai_hub_portfolio_position import AIHubPortfolioPosition
|
|
64
67
|
from gate_api.models.ai_hub_portfolio_running_data import AIHubPortfolioRunningData
|
|
65
68
|
from gate_api.models.ai_hub_portfolio_running_item import AIHubPortfolioRunningItem
|
|
66
69
|
from gate_api.models.ai_hub_portfolio_running_success_response import AIHubPortfolioRunningSuccessResponse
|
|
@@ -513,6 +516,7 @@ from gate_api.models.p2p_chat_message import P2pChatMessage
|
|
|
513
516
|
from gate_api.models.p2p_chat_message_payload import P2pChatMessagePayload
|
|
514
517
|
from gate_api.models.p2p_counterparty_user_info import P2pCounterpartyUserInfo
|
|
515
518
|
from gate_api.models.p2p_counterparty_user_info_response import P2pCounterpartyUserInfoResponse
|
|
519
|
+
from gate_api.models.p2p_merchant_books_place_biz_push_order_response import P2pMerchantBooksPlaceBizPushOrderResponse
|
|
516
520
|
from gate_api.models.p2p_merchant_market_info import P2pMerchantMarketInfo
|
|
517
521
|
from gate_api.models.p2p_merchant_user_info import P2pMerchantUserInfo
|
|
518
522
|
from gate_api.models.p2p_merchant_user_info_response import P2pMerchantUserInfoResponse
|
|
@@ -527,10 +531,12 @@ from gate_api.models.p2p_send_chat_message_result import P2pSendChatMessageResul
|
|
|
527
531
|
from gate_api.models.p2p_transaction_action_response import P2pTransactionActionResponse
|
|
528
532
|
from gate_api.models.p2p_transaction_convert_info import P2pTransactionConvertInfo
|
|
529
533
|
from gate_api.models.p2p_transaction_detail import P2pTransactionDetail
|
|
534
|
+
from gate_api.models.p2p_transaction_detail_pay_others import P2pTransactionDetailPayOthers
|
|
530
535
|
from gate_api.models.p2p_transaction_detail_response import P2pTransactionDetailResponse
|
|
531
536
|
from gate_api.models.p2p_transaction_list_item import P2pTransactionListItem
|
|
532
537
|
from gate_api.models.p2p_transaction_list_response import P2pTransactionListResponse
|
|
533
538
|
from gate_api.models.p2p_transaction_list_result import P2pTransactionListResult
|
|
539
|
+
from gate_api.models.p2p_transaction_list_result_pay_others import P2pTransactionListResultPayOthers
|
|
534
540
|
from gate_api.models.p2p_transaction_time_marker import P2pTransactionTimeMarker
|
|
535
541
|
from gate_api.models.p2p_upload_chat_file_response import P2pUploadChatFileResponse
|
|
536
542
|
from gate_api.models.p2p_upload_chat_file_result import P2pUploadChatFileResult
|
|
@@ -763,7 +763,7 @@ class BotApi(object):
|
|
|
763
763
|
def post_ai_hub_spot_martingale_create(self, spot_martingale_create_request, **kwargs): # noqa: E501
|
|
764
764
|
"""Create Spot Martin # noqa: E501
|
|
765
765
|
|
|
766
|
-
|
|
766
|
+
根据传入参数创建现货马丁策略。 止损口径与 App / `MartingaleBot` 一致: - 使用 **`create_params.stop_loss_per_cycle`**(每轮止损比例,小数字符串),**不要**使用 `stop_loss_price` 表达创建侧止损。 - 详情页展示的「止损价」由引擎按轮次计算;创建侧可选 **`create_params.trigger_price`**(触发价)。 # noqa: E501
|
|
767
767
|
This method makes a synchronous HTTP request by default. To make an
|
|
768
768
|
asynchronous HTTP request, please pass async_req=True
|
|
769
769
|
>>> thread = api.post_ai_hub_spot_martingale_create(spot_martingale_create_request, async_req=True)
|
|
@@ -792,7 +792,7 @@ class BotApi(object):
|
|
|
792
792
|
def post_ai_hub_spot_martingale_create_with_http_info(self, spot_martingale_create_request, **kwargs): # noqa: E501
|
|
793
793
|
"""Create Spot Martin # noqa: E501
|
|
794
794
|
|
|
795
|
-
|
|
795
|
+
根据传入参数创建现货马丁策略。 止损口径与 App / `MartingaleBot` 一致: - 使用 **`create_params.stop_loss_per_cycle`**(每轮止损比例,小数字符串),**不要**使用 `stop_loss_price` 表达创建侧止损。 - 详情页展示的「止损价」由引擎按轮次计算;创建侧可选 **`create_params.trigger_price`**(触发价)。 # noqa: E501
|
|
796
796
|
This method makes a synchronous HTTP request by default. To make an
|
|
797
797
|
asynchronous HTTP request, please pass async_req=True
|
|
798
798
|
>>> thread = api.post_ai_hub_spot_martingale_create_with_http_info(spot_martingale_create_request, async_req=True)
|
|
@@ -37,7 +37,7 @@ class CrossExApi(object):
|
|
|
37
37
|
self.api_client = api_client
|
|
38
38
|
|
|
39
39
|
def list_crossex_rule_symbols(self, **kwargs): # noqa: E501
|
|
40
|
-
"""
|
|
40
|
+
"""查询币对信息 # noqa: E501
|
|
41
41
|
|
|
42
42
|
Query Trading Pair Information # noqa: E501
|
|
43
43
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -62,7 +62,7 @@ class CrossExApi(object):
|
|
|
62
62
|
return self.list_crossex_rule_symbols_with_http_info(**kwargs) # noqa: E501
|
|
63
63
|
|
|
64
64
|
def list_crossex_rule_symbols_with_http_info(self, **kwargs): # noqa: E501
|
|
65
|
-
"""
|
|
65
|
+
"""查询币对信息 # noqa: E501
|
|
66
66
|
|
|
67
67
|
Query Trading Pair Information # noqa: E501
|
|
68
68
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -147,7 +147,7 @@ class CrossExApi(object):
|
|
|
147
147
|
collection_formats=collection_formats)
|
|
148
148
|
|
|
149
149
|
def list_crossex_rule_risk_limits(self, symbols, **kwargs): # noqa: E501
|
|
150
|
-
"""
|
|
150
|
+
"""查询风险限额信息 # noqa: E501
|
|
151
151
|
|
|
152
152
|
Query risk limit information for futures/margin trading pairs # noqa: E501
|
|
153
153
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -172,7 +172,7 @@ class CrossExApi(object):
|
|
|
172
172
|
return self.list_crossex_rule_risk_limits_with_http_info(symbols, **kwargs) # noqa: E501
|
|
173
173
|
|
|
174
174
|
def list_crossex_rule_risk_limits_with_http_info(self, symbols, **kwargs): # noqa: E501
|
|
175
|
-
"""
|
|
175
|
+
"""查询风险限额信息 # noqa: E501
|
|
176
176
|
|
|
177
177
|
Query risk limit information for futures/margin trading pairs # noqa: E501
|
|
178
178
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -261,7 +261,7 @@ class CrossExApi(object):
|
|
|
261
261
|
collection_formats=collection_formats)
|
|
262
262
|
|
|
263
263
|
def list_crossex_transfer_coins(self, **kwargs): # noqa: E501
|
|
264
|
-
"""
|
|
264
|
+
"""查询划转币种支持 # noqa: E501
|
|
265
265
|
|
|
266
266
|
Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0 # noqa: E501
|
|
267
267
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -286,7 +286,7 @@ class CrossExApi(object):
|
|
|
286
286
|
return self.list_crossex_transfer_coins_with_http_info(**kwargs) # noqa: E501
|
|
287
287
|
|
|
288
288
|
def list_crossex_transfer_coins_with_http_info(self, **kwargs): # noqa: E501
|
|
289
|
-
"""
|
|
289
|
+
"""查询划转币种支持 # noqa: E501
|
|
290
290
|
|
|
291
291
|
Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0 # noqa: E501
|
|
292
292
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -3450,6 +3450,7 @@ class CrossExApi(object):
|
|
|
3450
3450
|
:param int page: Page number
|
|
3451
3451
|
:param int limit: Maximum number returned by list, max 1000
|
|
3452
3452
|
:param str coin: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
|
|
3453
|
+
:param str statement_type: Bill entry type.
|
|
3453
3454
|
:param int _from: Start Millisecond Timestamp
|
|
3454
3455
|
:param int to: End Millisecond Timestamp
|
|
3455
3456
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -3479,6 +3480,7 @@ class CrossExApi(object):
|
|
|
3479
3480
|
:param int page: Page number
|
|
3480
3481
|
:param int limit: Maximum number returned by list, max 1000
|
|
3481
3482
|
:param str coin: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
|
|
3483
|
+
:param str statement_type: Bill entry type.
|
|
3482
3484
|
:param int _from: Start Millisecond Timestamp
|
|
3483
3485
|
:param int to: End Millisecond Timestamp
|
|
3484
3486
|
:param _return_http_data_only: response data without head status code
|
|
@@ -3501,6 +3503,7 @@ class CrossExApi(object):
|
|
|
3501
3503
|
'page',
|
|
3502
3504
|
'limit',
|
|
3503
3505
|
'coin',
|
|
3506
|
+
'statement_type',
|
|
3504
3507
|
'_from',
|
|
3505
3508
|
'to'
|
|
3506
3509
|
]
|
|
@@ -3533,6 +3536,8 @@ class CrossExApi(object):
|
|
|
3533
3536
|
query_params.append(('limit', local_var_params['limit'])) # noqa: E501
|
|
3534
3537
|
if 'coin' in local_var_params and local_var_params['coin'] is not None: # noqa: E501
|
|
3535
3538
|
query_params.append(('coin', local_var_params['coin'])) # noqa: E501
|
|
3539
|
+
if 'statement_type' in local_var_params and local_var_params['statement_type'] is not None: # noqa: E501
|
|
3540
|
+
query_params.append(('statement_type', local_var_params['statement_type'])) # noqa: E501
|
|
3536
3541
|
if '_from' in local_var_params and local_var_params['_from'] is not None: # noqa: E501
|
|
3537
3542
|
query_params.append(('from', local_var_params['_from'])) # noqa: E501
|
|
3538
3543
|
if 'to' in local_var_params and local_var_params['to'] is not None: # noqa: E501
|
|
@@ -3568,7 +3573,7 @@ class CrossExApi(object):
|
|
|
3568
3573
|
collection_formats=collection_formats)
|
|
3569
3574
|
|
|
3570
3575
|
def list_crossex_coin_discount_rate(self, **kwargs): # noqa: E501
|
|
3571
|
-
"""Query
|
|
3576
|
+
"""Query Currency Discount Rate # noqa: E501
|
|
3572
3577
|
|
|
3573
3578
|
Rate Limit: 200 requests per 10 seconds # noqa: E501
|
|
3574
3579
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -3594,7 +3599,7 @@ class CrossExApi(object):
|
|
|
3594
3599
|
return self.list_crossex_coin_discount_rate_with_http_info(**kwargs) # noqa: E501
|
|
3595
3600
|
|
|
3596
3601
|
def list_crossex_coin_discount_rate_with_http_info(self, **kwargs): # noqa: E501
|
|
3597
|
-
"""Query
|
|
3602
|
+
"""Query Currency Discount Rate # noqa: E501
|
|
3598
3603
|
|
|
3599
3604
|
Rate Limit: 200 requests per 10 seconds # noqa: E501
|
|
3600
3605
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1080,7 +1080,7 @@ class P2pApi(object):
|
|
|
1080
1080
|
number provided, it will be total request
|
|
1081
1081
|
timeout. It can also be a pair (tuple) of
|
|
1082
1082
|
(connection, read) timeouts.
|
|
1083
|
-
:rtype:
|
|
1083
|
+
:rtype: gate_api.P2pMerchantBooksPlaceBizPushOrderResponse
|
|
1084
1084
|
:return: If the method is called asynchronously,
|
|
1085
1085
|
returns the request thread.
|
|
1086
1086
|
"""
|
|
@@ -1106,7 +1106,7 @@ class P2pApi(object):
|
|
|
1106
1106
|
number provided, it will be total request
|
|
1107
1107
|
timeout. It can also be a pair (tuple) of
|
|
1108
1108
|
(connection, read) timeouts.
|
|
1109
|
-
:rtype: tuple(
|
|
1109
|
+
:rtype: tuple(gate_api.P2pMerchantBooksPlaceBizPushOrderResponse, status_code(int), headers(HTTPHeaderDict))
|
|
1110
1110
|
:return: If the method is called asynchronously,
|
|
1111
1111
|
returns the request thread.
|
|
1112
1112
|
"""
|
|
@@ -1171,7 +1171,7 @@ class P2pApi(object):
|
|
|
1171
1171
|
body=body_params,
|
|
1172
1172
|
post_params=form_params,
|
|
1173
1173
|
files=local_var_files,
|
|
1174
|
-
response_type='
|
|
1174
|
+
response_type='P2pMerchantBooksPlaceBizPushOrderResponse', # noqa: E501
|
|
1175
1175
|
auth_settings=auth_settings,
|
|
1176
1176
|
async_req=local_var_params.get('async_req'),
|
|
1177
1177
|
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
@@ -1189,7 +1189,6 @@ class P2pApi(object):
|
|
|
1189
1189
|
|
|
1190
1190
|
:param bool async_req: execute request asynchronously
|
|
1191
1191
|
:param AdsUpdateStatus ads_update_status: (required)
|
|
1192
|
-
:param str trade_type: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
|
|
1193
1192
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
1194
1193
|
be returned without reading/decoding response
|
|
1195
1194
|
data. Default is True.
|
|
@@ -1214,7 +1213,6 @@ class P2pApi(object):
|
|
|
1214
1213
|
|
|
1215
1214
|
:param bool async_req: execute request asynchronously
|
|
1216
1215
|
:param AdsUpdateStatus ads_update_status: (required)
|
|
1217
|
-
:param str trade_type: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
|
|
1218
1216
|
:param _return_http_data_only: response data without head status code
|
|
1219
1217
|
and headers
|
|
1220
1218
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -1232,8 +1230,7 @@ class P2pApi(object):
|
|
|
1232
1230
|
local_var_params = locals()
|
|
1233
1231
|
|
|
1234
1232
|
all_params = [
|
|
1235
|
-
'ads_update_status'
|
|
1236
|
-
'trade_type'
|
|
1233
|
+
'ads_update_status'
|
|
1237
1234
|
]
|
|
1238
1235
|
all_params.extend(
|
|
1239
1236
|
[
|
|
@@ -1262,8 +1259,6 @@ class P2pApi(object):
|
|
|
1262
1259
|
path_params = {}
|
|
1263
1260
|
|
|
1264
1261
|
query_params = []
|
|
1265
|
-
if 'trade_type' in local_var_params and local_var_params['trade_type'] is not None: # noqa: E501
|
|
1266
|
-
query_params.append(('trade_type', local_var_params['trade_type'])) # noqa: E501
|
|
1267
1262
|
|
|
1268
1263
|
header_params = {}
|
|
1269
1264
|
|
|
@@ -1729,7 +1729,7 @@ class WalletApi(object):
|
|
|
1729
1729
|
:param str currency: Currency (required)
|
|
1730
1730
|
:param str chain: Chain name
|
|
1731
1731
|
:param str limit: Maximum number returned, up to 100
|
|
1732
|
-
:param int page:
|
|
1732
|
+
:param int page: page number
|
|
1733
1733
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
1734
1734
|
be returned without reading/decoding response
|
|
1735
1735
|
data. Default is True.
|
|
@@ -1756,7 +1756,7 @@ class WalletApi(object):
|
|
|
1756
1756
|
:param str currency: Currency (required)
|
|
1757
1757
|
:param str chain: Chain name
|
|
1758
1758
|
:param str limit: Maximum number returned, up to 100
|
|
1759
|
-
:param int page:
|
|
1759
|
+
:param int page: page number
|
|
1760
1760
|
:param _return_http_data_only: response data without head status code
|
|
1761
1761
|
and headers
|
|
1762
1762
|
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
@@ -83,7 +83,7 @@ class ApiClient(object):
|
|
|
83
83
|
self.default_headers[header_name] = header_value
|
|
84
84
|
self.cookie = cookie
|
|
85
85
|
# Set default User-Agent.
|
|
86
|
-
self.user_agent = 'OpenAPI-Generator/7.2.
|
|
86
|
+
self.user_agent = 'OpenAPI-Generator/7.2.78/python'
|
|
87
87
|
# Set default X-Gate-Size-Decimal header for futures API
|
|
88
88
|
self.default_headers['X-Gate-Size-Decimal'] = '1'
|
|
89
89
|
self.client_side_validation = configuration.client_side_validation
|
|
@@ -313,8 +313,8 @@ conf = gate_api.Configuration(
|
|
|
313
313
|
return "Python SDK Debug Report:\n"\
|
|
314
314
|
"OS: {env}\n"\
|
|
315
315
|
"Python Version: {pyversion}\n"\
|
|
316
|
-
"Version of the API: v4.106.
|
|
317
|
-
"SDK Package Version: 7.2.
|
|
316
|
+
"Version of the API: v4.106.78\n"\
|
|
317
|
+
"SDK Package Version: 7.2.78".\
|
|
318
318
|
format(env=sys.platform, pyversion=sys.version)
|
|
319
319
|
|
|
320
320
|
def get_host_settings(self):
|
|
@@ -18,8 +18,11 @@ from gate_api.models.ai_hub_create_data import AIHubCreateData
|
|
|
18
18
|
from gate_api.models.ai_hub_create_success_response import AIHubCreateSuccessResponse
|
|
19
19
|
from gate_api.models.ai_hub_discover_data import AIHubDiscoverData
|
|
20
20
|
from gate_api.models.ai_hub_discover_success_response import AIHubDiscoverSuccessResponse
|
|
21
|
+
from gate_api.models.ai_hub_portfolio_base_info import AIHubPortfolioBaseInfo
|
|
21
22
|
from gate_api.models.ai_hub_portfolio_detail_data import AIHubPortfolioDetailData
|
|
22
23
|
from gate_api.models.ai_hub_portfolio_detail_success_response import AIHubPortfolioDetailSuccessResponse
|
|
24
|
+
from gate_api.models.ai_hub_portfolio_metrics import AIHubPortfolioMetrics
|
|
25
|
+
from gate_api.models.ai_hub_portfolio_position import AIHubPortfolioPosition
|
|
23
26
|
from gate_api.models.ai_hub_portfolio_running_data import AIHubPortfolioRunningData
|
|
24
27
|
from gate_api.models.ai_hub_portfolio_running_item import AIHubPortfolioRunningItem
|
|
25
28
|
from gate_api.models.ai_hub_portfolio_running_success_response import AIHubPortfolioRunningSuccessResponse
|
|
@@ -472,6 +475,7 @@ from gate_api.models.p2p_chat_message import P2pChatMessage
|
|
|
472
475
|
from gate_api.models.p2p_chat_message_payload import P2pChatMessagePayload
|
|
473
476
|
from gate_api.models.p2p_counterparty_user_info import P2pCounterpartyUserInfo
|
|
474
477
|
from gate_api.models.p2p_counterparty_user_info_response import P2pCounterpartyUserInfoResponse
|
|
478
|
+
from gate_api.models.p2p_merchant_books_place_biz_push_order_response import P2pMerchantBooksPlaceBizPushOrderResponse
|
|
475
479
|
from gate_api.models.p2p_merchant_market_info import P2pMerchantMarketInfo
|
|
476
480
|
from gate_api.models.p2p_merchant_user_info import P2pMerchantUserInfo
|
|
477
481
|
from gate_api.models.p2p_merchant_user_info_response import P2pMerchantUserInfoResponse
|
|
@@ -486,10 +490,12 @@ from gate_api.models.p2p_send_chat_message_result import P2pSendChatMessageResul
|
|
|
486
490
|
from gate_api.models.p2p_transaction_action_response import P2pTransactionActionResponse
|
|
487
491
|
from gate_api.models.p2p_transaction_convert_info import P2pTransactionConvertInfo
|
|
488
492
|
from gate_api.models.p2p_transaction_detail import P2pTransactionDetail
|
|
493
|
+
from gate_api.models.p2p_transaction_detail_pay_others import P2pTransactionDetailPayOthers
|
|
489
494
|
from gate_api.models.p2p_transaction_detail_response import P2pTransactionDetailResponse
|
|
490
495
|
from gate_api.models.p2p_transaction_list_item import P2pTransactionListItem
|
|
491
496
|
from gate_api.models.p2p_transaction_list_response import P2pTransactionListResponse
|
|
492
497
|
from gate_api.models.p2p_transaction_list_result import P2pTransactionListResult
|
|
498
|
+
from gate_api.models.p2p_transaction_list_result_pay_others import P2pTransactionListResultPayOthers
|
|
493
499
|
from gate_api.models.p2p_transaction_time_marker import P2pTransactionTimeMarker
|
|
494
500
|
from gate_api.models.p2p_upload_chat_file_response import P2pUploadChatFileResponse
|
|
495
501
|
from gate_api.models.p2p_upload_chat_file_result import P2pUploadChatFileResult
|
|
@@ -56,6 +56,7 @@ class AdsDetailRequest(object):
|
|
|
56
56
|
def adv_no(self):
|
|
57
57
|
"""Gets the adv_no of this AdsDetailRequest. # noqa: E501
|
|
58
58
|
|
|
59
|
+
Advertisement ID. # noqa: E501
|
|
59
60
|
|
|
60
61
|
:return: The adv_no of this AdsDetailRequest. # noqa: E501
|
|
61
62
|
:rtype: str
|
|
@@ -66,6 +67,7 @@ class AdsDetailRequest(object):
|
|
|
66
67
|
def adv_no(self, adv_no):
|
|
67
68
|
"""Sets the adv_no of this AdsDetailRequest.
|
|
68
69
|
|
|
70
|
+
Advertisement ID. # noqa: E501
|
|
69
71
|
|
|
70
72
|
:param adv_no: The adv_no of this AdsDetailRequest. # noqa: E501
|
|
71
73
|
:type: str
|
|
@@ -64,7 +64,7 @@ class AdsListRequest(object):
|
|
|
64
64
|
def asset(self):
|
|
65
65
|
"""Gets the asset of this AdsListRequest. # noqa: E501
|
|
66
66
|
|
|
67
|
-
Cryptocurrency # noqa: E501
|
|
67
|
+
Cryptocurrency symbol. # noqa: E501
|
|
68
68
|
|
|
69
69
|
:return: The asset of this AdsListRequest. # noqa: E501
|
|
70
70
|
:rtype: str
|
|
@@ -75,7 +75,7 @@ class AdsListRequest(object):
|
|
|
75
75
|
def asset(self, asset):
|
|
76
76
|
"""Sets the asset of this AdsListRequest.
|
|
77
77
|
|
|
78
|
-
Cryptocurrency # noqa: E501
|
|
78
|
+
Cryptocurrency symbol. # noqa: E501
|
|
79
79
|
|
|
80
80
|
:param asset: The asset of this AdsListRequest. # noqa: E501
|
|
81
81
|
:type: str
|
|
@@ -114,7 +114,7 @@ class AdsListRequest(object):
|
|
|
114
114
|
def trade_type(self):
|
|
115
115
|
"""Gets the trade_type of this AdsListRequest. # noqa: E501
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
Ad side: `buy` buy-crypto ad; `sell` sell-crypto ad. # noqa: E501
|
|
118
118
|
|
|
119
119
|
:return: The trade_type of this AdsListRequest. # noqa: E501
|
|
120
120
|
:rtype: str
|
|
@@ -125,7 +125,7 @@ class AdsListRequest(object):
|
|
|
125
125
|
def trade_type(self, trade_type):
|
|
126
126
|
"""Sets the trade_type of this AdsListRequest.
|
|
127
127
|
|
|
128
|
-
|
|
128
|
+
Ad side: `buy` buy-crypto ad; `sell` sell-crypto ad. # noqa: E501
|
|
129
129
|
|
|
130
130
|
:param trade_type: The trade_type of this AdsListRequest. # noqa: E501
|
|
131
131
|
:type: str
|
|
@@ -60,7 +60,7 @@ class AdsUpdateStatus(object):
|
|
|
60
60
|
def adv_no(self):
|
|
61
61
|
"""Gets the adv_no of this AdsUpdateStatus. # noqa: E501
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
Advertisement ID. # noqa: E501
|
|
64
64
|
|
|
65
65
|
:return: The adv_no of this AdsUpdateStatus. # noqa: E501
|
|
66
66
|
:rtype: int
|
|
@@ -71,7 +71,7 @@ class AdsUpdateStatus(object):
|
|
|
71
71
|
def adv_no(self, adv_no):
|
|
72
72
|
"""Sets the adv_no of this AdsUpdateStatus.
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
Advertisement ID. # noqa: E501
|
|
75
75
|
|
|
76
76
|
:param adv_no: The adv_no of this AdsUpdateStatus. # noqa: E501
|
|
77
77
|
:type: int
|
|
@@ -85,7 +85,7 @@ class AdsUpdateStatus(object):
|
|
|
85
85
|
def adv_status(self):
|
|
86
86
|
"""Gets the adv_status of this AdsUpdateStatus. # noqa: E501
|
|
87
87
|
|
|
88
|
-
Ad status
|
|
88
|
+
Ad status. `1`: listed; `3`: delisted; `4`: closed. # noqa: E501
|
|
89
89
|
|
|
90
90
|
:return: The adv_status of this AdsUpdateStatus. # noqa: E501
|
|
91
91
|
:rtype: int
|
|
@@ -96,13 +96,19 @@ class AdsUpdateStatus(object):
|
|
|
96
96
|
def adv_status(self, adv_status):
|
|
97
97
|
"""Sets the adv_status of this AdsUpdateStatus.
|
|
98
98
|
|
|
99
|
-
Ad status
|
|
99
|
+
Ad status. `1`: listed; `3`: delisted; `4`: closed. # noqa: E501
|
|
100
100
|
|
|
101
101
|
:param adv_status: The adv_status of this AdsUpdateStatus. # noqa: E501
|
|
102
102
|
:type: int
|
|
103
103
|
"""
|
|
104
104
|
if self.local_vars_configuration.client_side_validation and adv_status is None: # noqa: E501
|
|
105
105
|
raise ValueError("Invalid value for `adv_status`, must not be `None`") # noqa: E501
|
|
106
|
+
allowed_values = [1, 3, 4] # noqa: E501
|
|
107
|
+
if self.local_vars_configuration.client_side_validation and adv_status not in allowed_values: # noqa: E501
|
|
108
|
+
raise ValueError(
|
|
109
|
+
"Invalid value for `adv_status` ({0}), must be one of {1}" # noqa: E501
|
|
110
|
+
.format(adv_status, allowed_values)
|
|
111
|
+
)
|
|
106
112
|
|
|
107
113
|
self._adv_status = adv_status
|
|
108
114
|
|