Skip to content

Commit 8e389b1

Browse files
author
gate
committed
update to v7.2.66
1 parent 48d3f79 commit 8e389b1

7 files changed

Lines changed: 22 additions & 22 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
55

66
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
77

8-
- API version: v4.106.65
9-
- Package version: 7.2.65
8+
- API version: v4.106.66
9+
- Package version: 7.2.66
1010
- Build package: org.openapitools.codegen.languages.PhpClientCodegen
1111
For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
1212

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gate/gateapi-php",
3-
"version": "7.2.65",
3+
"version": "7.2.66",
44
"description": "Welcome to Gate API APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading.",
55
"keywords": [
66
"gate",

docs/Model/AIHubPortfolioDetailData.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Name | Type | Description | Notes
88
**strategy_type** | [**\GateApi\Model\StrategyType**](StrategyType.md) | |
99
**market** | **string** | |
1010
**status** | **string** | |
11-
**base_info** | [**map[string,AnyType]**](AnyType.md) | 基础信息,字段按策略类型动态变化 |
12-
**metrics** | [**map[string,AnyType]**](AnyType.md) | 指标信息,字段按策略类型动态变化 |
13-
**position** | [**map[string,AnyType]**](AnyType.md) | 仓位或持仓信息,字段按策略类型动态变化 | [optional]
11+
**base_info** | **map[string,string]** | 基础信息,字段按策略类型动态变化 |
12+
**metrics** | **map[string,string]** | 指标信息,字段按策略类型动态变化 |
13+
**position** | **map[string,string]** | 仓位或持仓信息,字段按策略类型动态变化 | [optional]
1414
**stop_supported** | **bool** | |
1515

1616
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

docs/Model/AIHubRecommendation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ Name | Type | Description | Notes
1111
**backtest_apr** | **string** | | [optional]
1212
**max_drawdown** | **string** | | [optional]
1313
**summary** | **string** | |
14-
**strategy_params_preview** | [**map[string,AnyType]**](AnyType.md) | 推荐参数预览;按策略类型动态变化 | [optional]
14+
**strategy_params_preview** | **map[string,string]** | 推荐参数预览;按策略类型动态变化 | [optional]
1515

1616
[[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md)

src/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class Configuration
7171
*
7272
* @var string
7373
*/
74-
protected $userAgent = 'OpenAPI-Generator/7.2.65/PHP';
74+
protected $userAgent = 'OpenAPI-Generator/7.2.66/PHP';
7575

7676
/**
7777
* Debug switch (default set to false)
@@ -387,8 +387,8 @@ public static function toDebugReport()
387387
$report = 'PHP SDK (GateApi) Debug Report:' . PHP_EOL;
388388
$report .= ' OS: ' . php_uname() . PHP_EOL;
389389
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
390-
$report .= ' The version of the OpenAPI document: v4.106.65' . PHP_EOL;
391-
$report .= ' SDK Package Version: 7.2.65' . PHP_EOL;
390+
$report .= ' The version of the OpenAPI document: v4.106.66' . PHP_EOL;
391+
$report .= ' SDK Package Version: 7.2.66' . PHP_EOL;
392392
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
393393

394394
return $report;

src/Model/AIHubPortfolioDetailData.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ class AIHubPortfolioDetailData implements ModelInterface, ArrayAccess
5959
'strategy_type' => '\GateApi\Model\StrategyType',
6060
'market' => 'string',
6161
'status' => 'string',
62-
'base_info' => 'map[string,AnyType]',
63-
'metrics' => 'map[string,AnyType]',
64-
'position' => 'map[string,AnyType]',
62+
'base_info' => 'map[string,string]',
63+
'metrics' => 'map[string,string]',
64+
'position' => 'map[string,string]',
6565
'stop_supported' => 'bool'
6666
];
6767

@@ -364,7 +364,7 @@ public function setStatus($status)
364364
/**
365365
* Gets base_info
366366
*
367-
* @return map[string,AnyType]
367+
* @return map[string,string]
368368
*/
369369
public function getBaseInfo()
370370
{
@@ -374,7 +374,7 @@ public function getBaseInfo()
374374
/**
375375
* Sets base_info
376376
*
377-
* @param map[string,AnyType] $base_info 基础信息,字段按策略类型动态变化
377+
* @param map[string,string] $base_info 基础信息,字段按策略类型动态变化
378378
*
379379
* @return $this
380380
*/
@@ -388,7 +388,7 @@ public function setBaseInfo($base_info)
388388
/**
389389
* Gets metrics
390390
*
391-
* @return map[string,AnyType]
391+
* @return map[string,string]
392392
*/
393393
public function getMetrics()
394394
{
@@ -398,7 +398,7 @@ public function getMetrics()
398398
/**
399399
* Sets metrics
400400
*
401-
* @param map[string,AnyType] $metrics 指标信息,字段按策略类型动态变化
401+
* @param map[string,string] $metrics 指标信息,字段按策略类型动态变化
402402
*
403403
* @return $this
404404
*/
@@ -412,7 +412,7 @@ public function setMetrics($metrics)
412412
/**
413413
* Gets position
414414
*
415-
* @return map[string,AnyType]|null
415+
* @return map[string,string]|null
416416
*/
417417
public function getPosition()
418418
{
@@ -422,7 +422,7 @@ public function getPosition()
422422
/**
423423
* Sets position
424424
*
425-
* @param map[string,AnyType]|null $position 仓位或持仓信息,字段按策略类型动态变化
425+
* @param map[string,string]|null $position 仓位或持仓信息,字段按策略类型动态变化
426426
*
427427
* @return $this
428428
*/

src/Model/AIHubRecommendation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class AIHubRecommendation implements ModelInterface, ArrayAccess
6262
'backtest_apr' => 'string',
6363
'max_drawdown' => 'string',
6464
'summary' => 'string',
65-
'strategy_params_preview' => 'map[string,AnyType]'
65+
'strategy_params_preview' => 'map[string,string]'
6666
];
6767

6868
/**
@@ -430,7 +430,7 @@ public function setSummary($summary)
430430
/**
431431
* Gets strategy_params_preview
432432
*
433-
* @return map[string,AnyType]|null
433+
* @return map[string,string]|null
434434
*/
435435
public function getStrategyParamsPreview()
436436
{
@@ -440,7 +440,7 @@ public function getStrategyParamsPreview()
440440
/**
441441
* Sets strategy_params_preview
442442
*
443-
* @param map[string,AnyType]|null $strategy_params_preview 推荐参数预览;按策略类型动态变化
443+
* @param map[string,string]|null $strategy_params_preview 推荐参数预览;按策略类型动态变化
444444
*
445445
* @return $this
446446
*/

0 commit comments

Comments
 (0)