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.
Files changed (698) hide show
  1. {gate_api-7.2.71 → gate_api-7.2.78}/PKG-INFO +13 -7
  2. {gate_api-7.2.71 → gate_api-7.2.78}/README.md +12 -6
  3. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/__init__.py +7 -1
  4. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/bot_api.py +2 -2
  5. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/cross_ex_api.py +13 -8
  6. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/p2p_api.py +4 -9
  7. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/wallet_api.py +2 -2
  8. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api_client.py +1 -1
  9. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/configuration.py +2 -2
  10. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/__init__.py +6 -0
  11. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_detail_request.py +2 -0
  12. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_list_request.py +4 -4
  13. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ads_update_status.py +10 -4
  14. gate_api-7.2.78/gate_api/models/ai_hub_portfolio_base_info.py +261 -0
  15. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_detail_data.py +10 -16
  16. gate_api-7.2.78/gate_api/models/ai_hub_portfolio_metrics.py +433 -0
  17. gate_api-7.2.78/gate_api/models/ai_hub_portfolio_position.py +251 -0
  18. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_recommendation.py +6 -6
  19. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_order.py +22 -16
  20. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/confirm_payment.py +22 -19
  21. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/confirm_receipt.py +18 -16
  22. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_create_params.py +4 -0
  23. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account.py +2 -0
  24. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_book_record.py +18 -18
  25. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order.py +52 -50
  26. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_chats_list_request.py +8 -9
  27. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_completed_transaction_list_request.py +12 -12
  28. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_counterparty_user_info_request.py +2 -2
  29. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_myself_payment_request.py +2 -2
  30. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_pending_transaction_list_request.py +14 -8
  31. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_transaction_details_request.py +2 -2
  32. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/infinite_grid_create_params.py +8 -6
  33. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_ads_list_request.py +6 -6
  34. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order.py +2 -2
  35. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ad_detail.py +41 -153
  36. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_list_item.py +4 -4
  37. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_update_status_result.py +2 -2
  38. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_list_result.py +4 -4
  39. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_message.py +16 -72
  40. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_message_payload.py +12 -12
  41. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_counterparty_user_info.py +10 -10
  42. gate_api-7.2.78/gate_api/models/p2p_merchant_books_place_biz_push_order_response.py +263 -0
  43. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_user_info.py +16 -16
  44. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ad.py +30 -30
  45. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_method_account.py +7 -7
  46. gate_api-7.2.78/gate_api/models/p2p_transaction_action_response.py +263 -0
  47. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_detail.py +98 -770
  48. gate_api-7.2.78/gate_api/models/p2p_transaction_detail_pay_others.py +291 -0
  49. gate_api-7.2.78/gate_api/models/p2p_transaction_list_item.py +765 -0
  50. gate_api-7.2.78/gate_api/models/p2p_transaction_list_result_pay_others.py +151 -0
  51. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_biz_push_order.py +87 -81
  52. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/send_chat_message_request.py +10 -4
  53. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_account_book.py +2 -2
  54. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_martingale_create_params.py +50 -16
  55. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbol.py +28 -28
  56. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/upload_chat_file.py +10 -4
  57. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/PKG-INFO +13 -7
  58. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/SOURCES.txt +6 -0
  59. {gate_api-7.2.71 → gate_api-7.2.78}/setup.py +1 -1
  60. gate_api-7.2.71/gate_api/models/p2p_transaction_action_response.py +0 -173
  61. gate_api-7.2.71/gate_api/models/p2p_transaction_list_item.py +0 -1801
  62. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/__init__.py +0 -0
  63. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/account_api.py +0 -0
  64. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/activity_api.py +0 -0
  65. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/alpha_api.py +0 -0
  66. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/assetswap_api.py +0 -0
  67. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/coupon_api.py +0 -0
  68. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/delivery_api.py +0 -0
  69. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/earn_api.py +0 -0
  70. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/earn_uni_api.py +0 -0
  71. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/flash_swap_api.py +0 -0
  72. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/futures_api.py +0 -0
  73. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/launch_api.py +0 -0
  74. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/margin_api.py +0 -0
  75. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/margin_uni_api.py +0 -0
  76. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/multi_collateral_loan_api.py +0 -0
  77. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/options_api.py +0 -0
  78. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/otc_api.py +0 -0
  79. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/rebate_api.py +0 -0
  80. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/spot_api.py +0 -0
  81. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/square_api.py +0 -0
  82. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/sub_account_api.py +0 -0
  83. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/trad_fi_api.py +0 -0
  84. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/unified_api.py +0 -0
  85. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/welfare_api.py +0 -0
  86. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/api/withdrawal_api.py +0 -0
  87. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/exceptions.py +0 -0
  88. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_balance.py +0 -0
  89. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_book_response.py +0 -0
  90. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_detail.py +0 -0
  91. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_detail_key.py +0 -0
  92. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_key_info.py +0 -0
  93. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_key_info_perms.py +0 -0
  94. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/account_rate_limit.py +0 -0
  95. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/accounts_response.py +0 -0
  96. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_commission.py +0 -0
  97. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_commission_history.py +0 -0
  98. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_transaction.py +0 -0
  99. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/agency_transaction_history.py +0 -0
  100. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_create_data.py +0 -0
  101. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_create_success_response.py +0 -0
  102. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_discover_data.py +0 -0
  103. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_discover_success_response.py +0 -0
  104. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_detail_success_response.py +0 -0
  105. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_data.py +0 -0
  106. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_item.py +0 -0
  107. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_running_success_response.py +0 -0
  108. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_data.py +0 -0
  109. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_request.py +0 -0
  110. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ai_hub_portfolio_stop_success_response.py +0 -0
  111. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/alpha_currency.py +0 -0
  112. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/alpha_ticker.py +0 -0
  113. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/amend_options_order_request.py +0 -0
  114. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_config.py +0 -0
  115. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_evaluate.py +0 -0
  116. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_list_assets.py +0 -0
  117. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_create_v1.py +0 -0
  118. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_list_v1.py +0 -0
  119. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_preview_v1.py +0 -0
  120. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_asset_swap_order_query_v1.py +0 -0
  121. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_reward_resp.py +0 -0
  122. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_reward_resp_data.py +0 -0
  123. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_claim_task_resp.py +0 -0
  124. {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
  125. {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
  126. {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
  127. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/api_response_ex_skill_get_user_identity_resp.py +0 -0
  128. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/asset_list_resp.py +0 -0
  129. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/asset_swap_frontend.py +0 -0
  130. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_coins_item.py +0 -0
  131. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_config_item.py +0 -0
  132. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount.py +0 -0
  133. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount_items.py +0 -0
  134. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_min_invest_amount_resp.py +0 -0
  135. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_order_item.py +0 -0
  136. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_add_position.py +0 -0
  137. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create.py +0 -0
  138. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create_items.py +0 -0
  139. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_create_resp.py +0 -0
  140. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_detail.py +0 -0
  141. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_list_info_resp.py +0 -0
  142. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_record_item.py +0 -0
  143. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_records_resp.py +0 -0
  144. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_stop.py +0 -0
  145. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_plan_update.py +0 -0
  146. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_invest_portfolio_item.py +0 -0
  147. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/auto_repay_setting.py +0 -0
  148. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/award_list_struct.py +0 -0
  149. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/award_list_struct_list.py +0 -0
  150. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/base_response.py +0 -0
  151. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_amend_item.py +0 -0
  152. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_amend_order_req.py +0 -0
  153. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_funding_rates_request.py +0 -0
  154. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_funding_rates_response.py +0 -0
  155. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_futures_order.py +0 -0
  156. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/batch_order.py +0 -0
  157. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/borrow_currency_info.py +0 -0
  158. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission.py +0 -0
  159. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission_item.py +0 -0
  160. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_commission_sub_broker_info.py +0 -0
  161. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_transaction.py +0 -0
  162. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/broker_transaction_history.py +0 -0
  163. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_batch_order.py +0 -0
  164. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cancel_order_result.py +0 -0
  165. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_activity_cd01.py +0 -0
  166. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_activity_rules_cd03.py +0 -0
  167. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_airdrop_record_cd06.py +0 -0
  168. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_error_cd01.py +0 -0
  169. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_participation_record_cd05.py +0 -0
  170. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_prize_pool_cd03.py +0 -0
  171. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_register_req_cd02.py +0 -0
  172. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_register_resp_cd02.py +0 -0
  173. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_cd03.py +0 -0
  174. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_progress_cd04.py +0 -0
  175. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/candy_drop_v4_task_progress_item_cd04.py +0 -0
  176. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories.py +0 -0
  177. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories_data.py +0 -0
  178. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/categories_data_list.py +0 -0
  179. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/claim_reward_error.py +0 -0
  180. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/claim_task_error.py +0 -0
  181. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_adjust.py +0 -0
  182. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_adjust_res.py +0 -0
  183. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency.py +0 -0
  184. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency_info.py +0 -0
  185. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_currency_res.py +0 -0
  186. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_current_rate.py +0 -0
  187. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_fix_rate.py +0 -0
  188. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/collateral_ltv.py +0 -0
  189. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract.py +0 -0
  190. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail.py +0 -0
  191. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail_data.py +0 -0
  192. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_detail_data_list.py +0 -0
  193. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_create_request.py +0 -0
  194. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_martingale_direction.py +0 -0
  195. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/contract_stat.py +0 -0
  196. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/convert_currencies_v2_item.py +0 -0
  197. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/convert_small_balance.py +0 -0
  198. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_futures_task.py +0 -0
  199. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_options_task.py +0 -0
  200. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/countdown_cancel_all_spot_task.py +0 -0
  201. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_lend_response.py +0 -0
  202. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_lend_response_data.py +0 -0
  203. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_earn_fixed_term_pre_redeem_response.py +0 -0
  204. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_multi_collateral_order.py +0 -0
  205. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order.py +0 -0
  206. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order2.py +0 -0
  207. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order2_data.py +0 -0
  208. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order_detail.py +0 -0
  209. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_order_v4.py +0 -0
  210. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_param.py +0 -0
  211. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order.py +0 -0
  212. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order_response.py +0 -0
  213. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_trail_order_result.py +0 -0
  214. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_transaction.py +0 -0
  215. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_uni_lend.py +0 -0
  216. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_uni_loan.py +0 -0
  217. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_user_resp.py +0 -0
  218. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/create_user_resp_data.py +0 -0
  219. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_balance.py +0 -0
  220. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_loan.py +0 -0
  221. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/cross_margin_repayment.py +0 -0
  222. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_asset.py +0 -0
  223. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_update_request.py +0 -0
  224. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_account_update_response.py +0 -0
  225. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_adl_rank.py +0 -0
  226. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_close_position_request.py +0 -0
  227. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_coin_discount_rate.py +0 -0
  228. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_order_request.py +0 -0
  229. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_order_response.py +0 -0
  230. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_quote_request.py +0 -0
  231. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_convert_quote_response.py +0 -0
  232. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_historical_margin_position.py +0 -0
  233. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_historical_position.py +0 -0
  234. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_interest_rate.py +0 -0
  235. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_leverage_request.py +0 -0
  236. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_leverage_response.py +0 -0
  237. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_margin_interest_record.py +0 -0
  238. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_margin_position.py +0 -0
  239. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_action_response.py +0 -0
  240. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_request.py +0 -0
  241. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_order_update_request.py +0 -0
  242. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_position.py +0 -0
  243. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_risk_limit.py +0 -0
  244. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_risk_limit_tier.py +0 -0
  245. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_special_fee.py +0 -0
  246. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_trade.py +0 -0
  247. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_coin.py +0 -0
  248. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_record.py +0 -0
  249. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_request.py +0 -0
  250. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/crossex_transfer_response.py +0 -0
  251. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency.py +0 -0
  252. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_chain.py +0 -0
  253. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_pair.py +0 -0
  254. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/currency_quota.py +0 -0
  255. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/debit_fee.py +0 -0
  256. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delete_position.py +0 -0
  257. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account.py +0 -0
  258. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account_book.py +0 -0
  259. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_account_history.py +0 -0
  260. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_candlestick.py +0 -0
  261. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_contract.py +0 -0
  262. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_limit_risk_tiers.py +0 -0
  263. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_liquidate.py +0 -0
  264. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_my_trade.py +0 -0
  265. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order.py +0 -0
  266. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order_book.py +0 -0
  267. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_order_book_item.py +0 -0
  268. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_position.py +0 -0
  269. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_position_close.py +0 -0
  270. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_settlement.py +0 -0
  271. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_ticker.py +0 -0
  272. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/delivery_trade.py +0 -0
  273. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/deposit_address.py +0 -0
  274. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/deposit_record.py +0 -0
  275. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/discover_scene.py +0 -0
  276. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_balance.py +0 -0
  277. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_orders.py +0 -0
  278. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_get_plans.py +0 -0
  279. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_modify_order_reinvest_params.py +0 -0
  280. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_order_refund_params.py +0 -0
  281. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_order_refund_preview.py +0 -0
  282. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/dual_project_recommend.py +0 -0
  283. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/earn_fixed_term_pre_redeem_request.py +0 -0
  284. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility.py +0 -0
  285. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility_response.py +0 -0
  286. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/eligibility_response_all_of.py +0 -0
  287. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/err_code_msg.py +0 -0
  288. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/error_response.py +0 -0
  289. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/evaluate_item.py +0 -0
  290. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/evaluate_resp.py +0 -0
  291. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ex_skill_claim_reward_req.py +0 -0
  292. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ex_skill_claim_task_req.py +0 -0
  293. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_bonus_info.py +0 -0
  294. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_coupon_info.py +0 -0
  295. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_history_record.py +0 -0
  296. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_lend_order.py +0 -0
  297. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_lend_request.py +0 -0
  298. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product.py +0 -0
  299. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product_info.py +0 -0
  300. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/fixed_term_product_simple.py +0 -0
  301. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_currency_pair.py +0 -0
  302. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_error_response.py +0 -0
  303. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_create_param.py +0 -0
  304. {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
  305. {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
  306. {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
  307. {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
  308. {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
  309. {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
  310. {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
  311. {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
  312. {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
  313. {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
  314. {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
  315. {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
  316. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_order.py +0 -0
  317. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_preview_order.py +0 -0
  318. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_multi_currency_preview_param.py +0 -0
  319. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order.py +0 -0
  320. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_req.py +0 -0
  321. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_resp.py +0 -0
  322. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_create_resp_data.py +0 -0
  323. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview.py +0 -0
  324. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview_resp.py +0 -0
  325. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_preview_resp_data.py +0 -0
  326. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_order_request.py +0 -0
  327. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/flash_swap_preview_request.py +0 -0
  328. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/funding_account.py +0 -0
  329. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/funding_rate_record.py +0 -0
  330. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/future_cancel_order_result.py +0 -0
  331. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account.py +0 -0
  332. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account_book.py +0 -0
  333. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_account_history.py +0 -0
  334. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_auto_deleverage.py +0 -0
  335. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_batch_amend_order_request.py +0 -0
  336. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_bbo_order.py +0 -0
  337. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_candlestick.py +0 -0
  338. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_direction.py +0 -0
  339. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_fee.py +0 -0
  340. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_grid_create_params.py +0 -0
  341. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_grid_create_request.py +0 -0
  342. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_index_constituents.py +0 -0
  343. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_initial_order.py +0 -0
  344. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_leverage.py +0 -0
  345. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_limit_risk_tiers.py +0 -0
  346. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_liq_order.py +0 -0
  347. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_liquidate.py +0 -0
  348. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order.py +0 -0
  349. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_amendment.py +0 -0
  350. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_book.py +0 -0
  351. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_book_item.py +0 -0
  352. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_order_timerange.py +0 -0
  353. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_position_cross_mode.py +0 -0
  354. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_premium_index.py +0 -0
  355. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_price_trigger.py +0 -0
  356. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_price_triggered_order.py +0 -0
  357. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_risk_limit_tier.py +0 -0
  358. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_ticker.py +0 -0
  359. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_trade.py +0 -0
  360. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/futures_update_price_triggered_order.py +0 -0
  361. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_beginner_task_list_error.py +0 -0
  362. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_my_activity_entry_response.py +0 -0
  363. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_my_activity_entry_response_data.py +0 -0
  364. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_coupon_detail_response.py +0 -0
  365. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_coupon_detail_response_data.py +0 -0
  366. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/get_user_identity_error.py +0 -0
  367. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_error_response.py +0 -0
  368. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_order_request.py +0 -0
  369. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_order_response.py +0 -0
  370. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_project_item.py +0 -0
  371. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_user_airdrop_record.py +0 -0
  372. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/hodler_airdrop_v4_user_order_record.py +0 -0
  373. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/index_constituent.py +0 -0
  374. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/infinite_grid_create_request.py +0 -0
  375. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/inline_response200.py +0 -0
  376. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/insurance_record.py +0 -0
  377. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines.py +0 -0
  378. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines_data.py +0 -0
  379. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/klines_data_list.py +0 -0
  380. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ladder_apr.py +0 -0
  381. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_create_order_response.py +0 -0
  382. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_error_response.py +0 -0
  383. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_pledge_record.py +0 -0
  384. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_project.py +0 -0
  385. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_reward_pool.py +0 -0
  386. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/launch_pool_v4_reward_record.py +0 -0
  387. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ledger_record.py +0 -0
  388. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/liquidate_order.py +0 -0
  389. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response.py +0 -0
  390. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response_data.py +0 -0
  391. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activities_response_data_list.py +0 -0
  392. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response.py +0 -0
  393. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response_data.py +0 -0
  394. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_activity_types_response_data_list.py +0 -0
  395. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_history_response.py +0 -0
  396. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_history_response_data.py +0 -0
  397. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_lends_response.py +0 -0
  398. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_lends_response_data.py +0 -0
  399. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_by_asset_response.py +0 -0
  400. {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
  401. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_response.py +0 -0
  402. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_earn_fixed_term_products_response_data.py +0 -0
  403. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_error.py +0 -0
  404. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response.py +0 -0
  405. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data.py +0 -0
  406. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_list.py +0 -0
  407. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_live.py +0 -0
  408. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_live_host.py +0 -0
  409. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_live_replay_response_data_video.py +0 -0
  410. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_error.py +0 -0
  411. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response.py +0 -0
  412. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response_data.py +0 -0
  413. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_square_ai_search_response_data_items.py +0 -0
  414. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response.py +0 -0
  415. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data.py +0 -0
  416. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_help_url.py +0 -0
  417. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_jump_url.py +0 -0
  418. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_list.py +0 -0
  419. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/list_user_coupons_response_data_progress_config.py +0 -0
  420. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account.py +0 -0
  421. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account_book.py +0 -0
  422. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_account_currency.py +0 -0
  423. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_grid_create_params.py +0 -0
  424. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_grid_create_request.py +0 -0
  425. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_leverage_tier.py +0 -0
  426. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_market_leverage.py +0 -0
  427. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_tiers.py +0 -0
  428. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/margin_transferable.py +0 -0
  429. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/max_uni_borrowable.py +0 -0
  430. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_futures_order.py +0 -0
  431. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_futures_position.py +0 -0
  432. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_margin_result.py +0 -0
  433. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_options_order.py +0 -0
  434. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_options_position.py +0 -0
  435. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_risk_unit.py +0 -0
  436. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_spot_balance.py +0 -0
  437. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mock_spot_order.py +0 -0
  438. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mt5_account.py +0 -0
  439. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/mt5_account_data.py +0 -0
  440. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_chain_address_item.py +0 -0
  441. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_currency.py +0 -0
  442. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_item.py +0 -0
  443. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_order.py +0 -0
  444. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_record.py +0 -0
  445. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_collateral_record_currency.py +0 -0
  446. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_loan_item.py +0 -0
  447. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_loan_repay_item.py +0 -0
  448. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_repay_record.py +0 -0
  449. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/multi_repay_resp.py +0 -0
  450. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_futures_trade.py +0 -0
  451. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/my_futures_trade_time_range.py +0 -0
  452. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/open_orders.py +0 -0
  453. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_account.py +0 -0
  454. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_account_book.py +0 -0
  455. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_candlestick.py +0 -0
  456. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_contract.py +0 -0
  457. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_mmp.py +0 -0
  458. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_mmp_reset.py +0 -0
  459. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_my_settlements.py +0 -0
  460. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_my_trade.py +0 -0
  461. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_order.py +0 -0
  462. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_order_book.py +0 -0
  463. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position.py +0 -0
  464. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position_close.py +0 -0
  465. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_position_close_order.py +0 -0
  466. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_settlement.py +0 -0
  467. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_ticker.py +0 -0
  468. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_trade.py +0 -0
  469. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_underlying.py +0 -0
  470. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/options_underlying_ticker.py +0 -0
  471. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_book.py +0 -0
  472. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_cancel.py +0 -0
  473. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_create_v1_req.py +0 -0
  474. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_create_v1_resp.py +0 -0
  475. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list.py +0 -0
  476. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list_data.py +0 -0
  477. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_history_list_data_list.py +0 -0
  478. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list.py +0 -0
  479. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_data.py +0 -0
  480. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_data_list.py +0 -0
  481. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_struct.py +0 -0
  482. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_struct_list.py +0 -0
  483. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_list_v1_resp.py +0 -0
  484. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_patch.py +0 -0
  485. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_preview_v1_req.py +0 -0
  486. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_preview_v1_resp.py +0 -0
  487. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_resp.py +0 -0
  488. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/order_response.py +0 -0
  489. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_action_response.py +0 -0
  490. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_item.py +0 -0
  491. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_response.py +0 -0
  492. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_bank_list_result.py +0 -0
  493. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_mark_order_paid_request.py +0 -0
  494. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_detail.py +0 -0
  495. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_detail_response.py +0 -0
  496. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_crypto_currency_info.py +0 -0
  497. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_fiat_currency_info.py +0 -0
  498. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_item.py +0 -0
  499. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_response.py +0 -0
  500. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_list_result.py +0 -0
  501. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_order_request.py +0 -0
  502. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_request.py +0 -0
  503. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_response.py +0 -0
  504. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_quote_result.py +0 -0
  505. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_create_response.py +0 -0
  506. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_item.py +0 -0
  507. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_response.py +0 -0
  508. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_list_result.py +0 -0
  509. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_stable_coin_order_request.py +0 -0
  510. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_user_default_bank.py +0 -0
  511. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/otc_user_default_bank_response.py +0 -0
  512. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/other_contact.py +0 -0
  513. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ad_detail_response.py +0 -0
  514. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_list_response.py +0 -0
  515. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_ads_update_status_response.py +0 -0
  516. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_chat_list_response.py +0 -0
  517. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_counterparty_user_info_response.py +0 -0
  518. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_market_info.py +0 -0
  519. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_merchant_user_info_response.py +0 -0
  520. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ads_list_response.py +0 -0
  521. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_my_ads_list_result.py +0 -0
  522. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_method_group.py +0 -0
  523. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_payment_methods_response.py +0 -0
  524. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_send_chat_message_response.py +0 -0
  525. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_send_chat_message_result.py +0 -0
  526. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_convert_info.py +0 -0
  527. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_detail_response.py +0 -0
  528. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_list_response.py +0 -0
  529. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_list_result.py +0 -0
  530. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_transaction_time_marker.py +0 -0
  531. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_upload_chat_file_response.py +0 -0
  532. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/p2p_upload_chat_file_result.py +0 -0
  533. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application.py +0 -0
  534. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application_response.py +0 -0
  535. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_application_response_all_of.py +0 -0
  536. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_commission_history.py +0 -0
  537. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated.py +0 -0
  538. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated_response.py +0 -0
  539. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_data_aggregated_response_all_of.py +0 -0
  540. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_sub.py +0 -0
  541. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_sub_list.py +0 -0
  542. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/partner_transaction_history.py +0 -0
  543. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/patch_uni_lend.py +0 -0
  544. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_dual_investment_order.py +0 -0
  545. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_dual_investment_order_params.py +0 -0
  546. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_order_request.py +0 -0
  547. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/place_order_response.py +0 -0
  548. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position.py +0 -0
  549. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_close.py +0 -0
  550. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_close_order.py +0 -0
  551. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list.py +0 -0
  552. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data.py +0 -0
  553. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_close_detail.py +0 -0
  554. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_list.py +0 -0
  555. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_history_list_data_realized_pnl_detail.py +0 -0
  556. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list.py +0 -0
  557. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list_data.py +0 -0
  558. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_list_data_list.py +0 -0
  559. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/position_timerange.py +0 -0
  560. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_from_param.py +0 -0
  561. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_order.py +0 -0
  562. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_order_detail.py +0 -0
  563. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/preview_to_param.py +0 -0
  564. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/profit_loss_range.py +0 -0
  565. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/quote_request.py +0 -0
  566. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/quote_response.py +0 -0
  567. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/rebate_user_info.py +0 -0
  568. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend.py +0 -0
  569. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend_v2_scheme.py +0 -0
  570. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/recommend_v2_strategy.py +0 -0
  571. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/redeem_launch_pool_response.py +0 -0
  572. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/redeem_v4.py +0 -0
  573. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_currency_res.py +0 -0
  574. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_multi_loan.py +0 -0
  575. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_currency.py +0 -0
  576. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_left_interest.py +0 -0
  577. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_repaid_currency.py +0 -0
  578. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/repay_record_total_interest.py +0 -0
  579. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/risk_units.py +0 -0
  580. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/saved_address.py +0 -0
  581. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/small_balance.py +0 -0
  582. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/small_balance_history.py +0 -0
  583. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_account.py +0 -0
  584. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_currency_chain.py +0 -0
  585. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_fee.py +0 -0
  586. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_grid_create_params.py +0 -0
  587. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_grid_create_request.py +0 -0
  588. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_insurance_history.py +0 -0
  589. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_martingale_create_request.py +0 -0
  590. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_put_order.py +0 -0
  591. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_trigger.py +0 -0
  592. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/spot_price_triggered_order.py +0 -0
  593. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stop_all_trail_orders.py +0 -0
  594. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stop_trail_order.py +0 -0
  595. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stp_group.py +0 -0
  596. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/stp_group_user.py +0 -0
  597. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/strategy_type.py +0 -0
  598. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account.py +0 -0
  599. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_balance.py +0 -0
  600. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_cross_margin_balance.py +0 -0
  601. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_futures_balance.py +0 -0
  602. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_key.py +0 -0
  603. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_key_perms.py +0 -0
  604. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_margin_balance.py +0 -0
  605. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_to_sub_account.py +0 -0
  606. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_transfer.py +0 -0
  607. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_account_transfer_record_item.py +0 -0
  608. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_cross_margin_account.py +0 -0
  609. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/sub_user_mode.py +0 -0
  610. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/swap_coin.py +0 -0
  611. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/swap_coin_struct.py +0 -0
  612. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols.py +0 -0
  613. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols_data.py +0 -0
  614. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/symbols_data_list.py +0 -0
  615. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/system_time.py +0 -0
  616. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/ticker.py +0 -0
  617. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/tokens.py +0 -0
  618. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/total_balance.py +0 -0
  619. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_close_position_request.py +0 -0
  620. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_error.py +0 -0
  621. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_order_request.py +0 -0
  622. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_order_update_request.py +0 -0
  623. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_position_update_request.py +0 -0
  624. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_ticker.py +0 -0
  625. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_ticker_data.py +0 -0
  626. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trad_fi_transaction_request.py +0 -0
  627. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trade.py +0 -0
  628. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trade_fee.py +0 -0
  629. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_change_log.py +0 -0
  630. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order.py +0 -0
  631. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_change_log_response.py +0 -0
  632. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_detail_response.py +0 -0
  633. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_list_response.py +0 -0
  634. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trail_order_response.py +0 -0
  635. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_config.py +0 -0
  636. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_id.py +0 -0
  637. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list.py +0 -0
  638. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list_data.py +0 -0
  639. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transaction_list_data_list.py +0 -0
  640. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transfer.py +0 -0
  641. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transfer_order_status.py +0 -0
  642. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/transferables_result.py +0 -0
  643. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trigger_order_response.py +0 -0
  644. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/trigger_time.py +0 -0
  645. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_order.py +0 -0
  646. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_withdrawal.py +0 -0
  647. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uid_push_withdrawal_resp.py +0 -0
  648. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_chart_point.py +0 -0
  649. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency.py +0 -0
  650. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency_interest.py +0 -0
  651. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_currency_pair.py +0 -0
  652. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_estimated_rate.py +0 -0
  653. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_interest_record.py +0 -0
  654. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend.py +0 -0
  655. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend_interest.py +0 -0
  656. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_lend_record.py +0 -0
  657. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan.py +0 -0
  658. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan_interest_record.py +0 -0
  659. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/uni_loan_record.py +0 -0
  660. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_account.py +0 -0
  661. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_balance.py +0 -0
  662. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_borrowable.py +0 -0
  663. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_collateral_req.py +0 -0
  664. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_collateral_res.py +0 -0
  665. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_currency.py +0 -0
  666. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_discount.py +0 -0
  667. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_discount_tiers.py +0 -0
  668. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_history_loan_rate.py +0 -0
  669. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_history_loan_rate_rates.py +0 -0
  670. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_leverage_config.py +0 -0
  671. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_leverage_setting.py +0 -0
  672. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan.py +0 -0
  673. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan_record.py +0 -0
  674. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_loan_result.py +0 -0
  675. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_margin_tiers.py +0 -0
  676. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_mode_set.py +0 -0
  677. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_portfolio_input.py +0 -0
  678. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_portfolio_output.py +0 -0
  679. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_risk_units.py +0 -0
  680. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_settings.py +0 -0
  681. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/unified_transferable.py +0 -0
  682. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_dual_comp_position_cross_mode_request.py +0 -0
  683. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_order.py +0 -0
  684. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_order_data.py +0 -0
  685. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_position.py +0 -0
  686. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/update_trail_order.py +0 -0
  687. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_asset_resp.py +0 -0
  688. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_asset_resp_data.py +0 -0
  689. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_sub.py +0 -0
  690. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/user_sub_relation.py +0 -0
  691. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdraw_status.py +0 -0
  692. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdrawal_record.py +0 -0
  693. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/models/withdrawals_del.py +0 -0
  694. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api/rest.py +0 -0
  695. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/dependency_links.txt +0 -0
  696. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/requires.txt +0 -0
  697. {gate_api-7.2.71 → gate_api-7.2.78}/gate_api.egg-info/top_level.txt +0 -0
  698. {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.71
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.71
36
- - Package version: 7.2.71
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 | [Public Interface] Query Trading Pair Information
148
- *CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits | [Public Interface] Query Risk Limit Information
149
- *CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin | [Public Interface] Query Supported Transfer Currencies
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 currency discount rate (discount rate of margin currency in isolated exchange mode)
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.71
8
- - Package version: 7.2.71
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 | [Public Interface] Query Trading Pair Information
120
- *CrossExApi* | [**list_crossex_rule_risk_limits**](docs/CrossExApi.md#list_crossex_rule_risk_limits) | **GET** /crossex/rule/risk_limits | [Public Interface] Query Risk Limit Information
121
- *CrossExApi* | [**list_crossex_transfer_coins**](docs/CrossExApi.md#list_crossex_transfer_coins) | **GET** /crossex/transfers/coin | [Public Interface] Query Supported Transfer Currencies
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 currency discount rate (discount rate of margin currency in isolated exchange mode)
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.71"
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
- Create a spot Martin strategy based on the passed parameters. # noqa: E501
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
- Create a spot Martin strategy based on the passed parameters. # noqa: E501
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
- """[Public Interface] Query Trading Pair Information # noqa: E501
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
- """[Public Interface] Query Trading Pair Information # noqa: E501
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
- """[Public Interface] Query Risk Limit Information # noqa: E501
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
- """[Public Interface] Query Risk Limit Information # noqa: E501
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
- """[Public Interface] Query Supported Transfer Currencies # noqa: E501
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
- """[Public Interface] Query Supported Transfer Currencies # noqa: E501
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 currency discount rate (discount rate of margin currency in isolated exchange mode) # noqa: E501
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 currency discount rate (discount rate of margin currency in isolated exchange mode) # noqa: E501
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: object
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(object, status_code(int), headers(HTTPHeaderDict))
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='object', # noqa: E501
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: Page number
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: Page number
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.71/python'
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.71\n"\
317
- "SDK Package Version: 7.2.71".\
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
- Buy/Sell, sell/buy # noqa: E501
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
- Buy/Sell, sell/buy # noqa: E501
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
- Ad ID # noqa: E501
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
- Ad ID # noqa: E501
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: 1=Active, 3=Inactive, 4=Closed # noqa: E501
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: 1=Active, 3=Inactive, 4=Closed # noqa: E501
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