-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added modify order to kucoin hf (#225)
Co-authored-by: Ignas Vienazindys <[email protected]>
- Loading branch information
1 parent
48d3e12
commit 3cd4772
Showing
4 changed files
with
88 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace Kucoin.Net.Objects.Models.Spot; | ||
|
||
/// <summary> | ||
/// New order id | ||
/// </summary> | ||
public class KucoinModifiedOrder | ||
{ | ||
/// <summary> | ||
/// The id of the new order | ||
/// </summary> | ||
[JsonProperty("newOrderId")] | ||
public string Id { get; set; } = string.Empty; | ||
} |