Skip to content

Commit

Permalink
fix: fix type of OpenOrdersResult Side prop
Browse files Browse the repository at this point in the history
  • Loading branch information
hadnet committed Jun 9, 2021
1 parent aa7dd7b commit 7d1b8b2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/message-result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1469,14 +1469,14 @@ export interface AccountTradesResult {
export interface OpenOrdersResult {
/**
* The open order can be Buy or Sell.
* - 0 Buy
* - 1 Sell
* - 2 Short (reserved for future use)
* - 3 Unknown (error condition)
* @type {SideResponse}
* - Buy
* - Sell
* - Short (reserved for future use)
* - Unknown (error condition)
* @type {TradeSide}
* @memberof OpenOrdersResult
*/
Side: SideResponse;
Side: TradeSide;

/**
* The ID of the open order. The OrderID is unique in each Order Management Systsem.
Expand Down

0 comments on commit 7d1b8b2

Please sign in to comment.