Skip to content

Commit fd71285

Browse files
author
gate
committed
update to v7.1.29
1 parent f065604 commit fd71285

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/SpotPriceTrigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**Price** | **string** | Trigger price |
9-
**Rule** | **string** | 价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发 |
9+
**Rule** | **string** | Price trigger condition - `>=`: triggered when market price is greater than or equal to `price` - `<=`: triggered when market price is less than or equal to `price` |
1010
**Expiration** | **int** | Maximum wait time for trigger condition (in seconds). Order will be cancelled if timeout |
1111

1212
[[Back to Model list]](../README.md#documentation-for-models)

src/Io.Gate.GateApi/Model/SpotPriceTrigger.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ namespace Io.Gate.GateApi.Model
3131
public partial class SpotPriceTrigger : IEquatable<SpotPriceTrigger>, IValidatableObject
3232
{
3333
/// <summary>
34-
/// 价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发
34+
/// Price trigger condition - &#x60;&gt;&#x3D;&#x60;: triggered when market price is greater than or equal to &#x60;price&#x60; - &#x60;&lt;&#x3D;&#x60;: triggered when market price is less than or equal to &#x60;price&#x60;
3535
/// </summary>
36-
/// <value>价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发</value>
36+
/// <value>Price trigger condition - &#x60;&gt;&#x3D;&#x60;: triggered when market price is greater than or equal to &#x60;price&#x60; - &#x60;&lt;&#x3D;&#x60;: triggered when market price is less than or equal to &#x60;price&#x60; </value>
3737
[JsonConverter(typeof(StringEnumConverter))]
3838
public enum RuleEnum
3939
{
@@ -52,9 +52,9 @@ public enum RuleEnum
5252
}
5353

5454
/// <summary>
55-
/// 价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发
55+
/// Price trigger condition - &#x60;&gt;&#x3D;&#x60;: triggered when market price is greater than or equal to &#x60;price&#x60; - &#x60;&lt;&#x3D;&#x60;: triggered when market price is less than or equal to &#x60;price&#x60;
5656
/// </summary>
57-
/// <value>价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发</value>
57+
/// <value>Price trigger condition - &#x60;&gt;&#x3D;&#x60;: triggered when market price is greater than or equal to &#x60;price&#x60; - &#x60;&lt;&#x3D;&#x60;: triggered when market price is less than or equal to &#x60;price&#x60; </value>
5858
[DataMember(Name="rule")]
5959
public RuleEnum Rule { get; set; }
6060
/// <summary>
@@ -66,7 +66,7 @@ protected SpotPriceTrigger() { }
6666
/// Initializes a new instance of the <see cref="SpotPriceTrigger" /> class.
6767
/// </summary>
6868
/// <param name="price">Trigger price (required).</param>
69-
/// <param name="rule">价格条件类型 - 大于等于: 表示市场价格大于等于 price 时触发 - 小于等于: 表示市场价格小于等于 price 时触发 (required).</param>
69+
/// <param name="rule">Price trigger condition - &#x60;&gt;&#x3D;&#x60;: triggered when market price is greater than or equal to &#x60;price&#x60; - &#x60;&lt;&#x3D;&#x60;: triggered when market price is less than or equal to &#x60;price&#x60; (required).</param>
7070
/// <param name="expiration">Maximum wait time for trigger condition (in seconds). Order will be cancelled if timeout (required).</param>
7171
public SpotPriceTrigger(string price = default(string), RuleEnum rule = default(RuleEnum), int expiration = default(int))
7272
{

0 commit comments

Comments
 (0)