Class BankeraOrder

java.lang.Object
org.knowm.xchange.bankera.dto.trade.BankeraOrder

public class BankeraOrder extends Object
  • Constructor Details

    • BankeraOrder

      public BankeraOrder(long id, String market, String price, String side, String type, String status, String amount, String executedAmount, String remainingAmount, String clientOrderId, String createdAt, String updatedAt, String cancelledAt, List<BankeraTransaction> transactions)
      Parameters:
      id - id of order
      market - order market name
      price - order price
      side - order side (buy/sell)
      type - order type (limit/market)
      status - order status
      amount - order amount
      clientOrderId - custom or generated client order id
  • Method Details

    • getId

      public long getId()
    • getMarket

      public String getMarket()
    • getPrice

      public String getPrice()
    • getSide

      public String getSide()
    • getType

      public String getType()
    • getStatus

      public String getStatus()
    • getAmount

      public String getAmount()
    • getClientOrderId

      public String getClientOrderId()
    • getRemainingAmount

      public String getRemainingAmount()
    • getExecutedAmount

      public String getExecutedAmount()
    • getCreatedAt

      public String getCreatedAt()
    • getUpdatedAt

      public String getUpdatedAt()
    • getCancelledAt

      public String getCancelledAt()
    • getTransactions

      public List<BankeraTransaction> getTransactions()
    • getTotalFee

      public BigDecimal getTotalFee()