|
| 1 | +package com.factset.sdk.eventdriven.factsettrading.model.tradeevents; |
| 2 | + |
| 3 | +import com.factset.sdk.eventdriven.factsettrading.model.enums.*; |
| 4 | +import lombok.Data; |
| 5 | + |
| 6 | +@Data |
| 7 | +public class NewOrderEvent { |
| 8 | + BasicMessage basicMessage; |
| 9 | + String account; |
| 10 | + String clientOrderId; |
| 11 | + Double commission; |
| 12 | + CommissionType commissionType; |
| 13 | + String currency; |
| 14 | + ExecutionInstruction executionInstruction; |
| 15 | + HandlingInstruction handlingInstructions; |
| 16 | + IdSource idSource; |
| 17 | + String ioiId; |
| 18 | + String orderId; |
| 19 | + Double orderQuantity; |
| 20 | + OrderStatus orderStatus; |
| 21 | + OrderType orderType; |
| 22 | + String originalClientOrderId; |
| 23 | + Double price; |
| 24 | + Rule80A rule80A; |
| 25 | + String securityId; |
| 26 | + Side side; |
| 27 | + String symbol; |
| 28 | + String text; |
| 29 | + TimeInForce timeInForce; |
| 30 | + String transactTime; |
| 31 | + SettlementType settlementType; |
| 32 | + String settlementDate; |
| 33 | + String symbolSuffix; |
| 34 | + String executingBroker; |
| 35 | + OpenClose openClose; |
| 36 | + String processCode; |
| 37 | + Double stopPrice; |
| 38 | + String executionDestination; |
| 39 | + String issuer; |
| 40 | + String securityDescription; |
| 41 | + String clientId; |
| 42 | + Double minimumQuantity; |
| 43 | + Double maximumFloor; |
| 44 | + ReportToExchange reportToExchange; |
| 45 | + Boolean locateRequired; |
| 46 | + String quoteId; |
| 47 | + String settlementCurrency; |
| 48 | + ForexRequest forexRequest; |
| 49 | + String expireTime; |
| 50 | + Double prevClosePrice; |
| 51 | + Double cashOrderQuantity; |
| 52 | + String effectiveTime; |
| 53 | + SecurityType securityType; |
| 54 | + Double orderQuantity2; |
| 55 | + String settlementDate2; |
| 56 | + String maturityMonthYear; |
| 57 | + PutOrCall putOrCall; |
| 58 | + Double strikePrice; |
| 59 | + CoveredOrUncovered coveredOrUncovered; |
| 60 | + CustomerOrFirm customerOrFirm; |
| 61 | + String maturityDay; |
| 62 | + String optionAttribute; |
| 63 | + String securityExchange; |
| 64 | + Double maximumShow; |
| 65 | + Double pegDifference; |
| 66 | + DiscretionInstruction discretionInstruction; |
| 67 | + Double discretionOffset; |
| 68 | + String expireDate; |
| 69 | + Product product; |
| 70 | + String cfiCode; |
| 71 | + Double price2; |
| 72 | + String key; |
| 73 | + String sendingDate; |
| 74 | + Integer pegSelectionIndex; |
| 75 | + String cancelType; |
| 76 | + Double bidPrice; |
| 77 | + Double askPrice; |
| 78 | + Double lastPrice; |
| 79 | + Integer bidSize; |
| 80 | + Integer askSize; |
| 81 | + Integer volume; |
| 82 | + String ticketId; |
| 83 | +} |
0 commit comments