Interface ESPSubmissionLegClientFieldSet
-
- All Superinterfaces:
LeggedMessage
,Message
,SubmissionLegClientFieldSet
- All Known Implementing Classes:
ESPSubmissionLegClientFieldSetChild
public interface ESPSubmissionLegClientFieldSet extends SubmissionLegClientFieldSet
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default java.lang.String
getFwdPips()
Deprecated.default java.lang.String
getFwdPoints()
For forward trades this is the forward points that the client wants to trade on.default java.lang.String
getPrice()
This is the all-in rate that the client wants to trade on.-
Methods inherited from interface com.caplin.motif.datasource.LeggedMessage
getId, getIndex
-
Methods inherited from interface com.caplin.generated.motif.fx.trading.fieldsets.SubmissionLegClientFieldSet
getAmount, getBuyPaySettlementID, getBuyPaySettlementInstructionType, getBuyPaySettlementRemarks, getBuyReceiveSettlementID, getBuyReceiveSettlementInstructionType, getBuyReceiveSettlementRemarks, getBuySell, getFixingDate, getRemarks, getRequestedProfitCurrency, getSellPaySettlementID, getSellPaySettlementInstructionType, getSellPaySettlementRemarks, getSellReceiveSettlementID, getSellReceiveSettlementInstructionType, getSellReceiveSettlementRemarks, getSettlementDate, getTenor, getTOBOUser, getTraderRemarks
-
-
-
-
Method Detail
-
getPrice
default java.lang.String getPrice()
This is the all-in rate that the client wants to trade on. The value of this field must equal the value of either the L*_AllInBidRate or L*_AllInAskRate field on the rate update that the client is executing. The front end typically populates this field by reading the currently rendered price on the buy or sell button at the time the user clicks. Example value: 1.08575
-
getFwdPoints
default java.lang.String getFwdPoints()
For forward trades this is the forward points that the client wants to trade on. The value of this field must equal the value of either the BidPoints or AskPoints field on the rate update that the client is executing. For SPOT trades this field should be not sent. If the trade is a forward but the back end did not send the BidPoints and AskPoints fields (because they are optional) then this field should be not sent. Example value: 0.005390
-
getFwdPips
@Deprecated default java.lang.String getFwdPips()
Deprecated.For forward trades this is the forward pips that the client wants to trade on. The value of this field must equal the value of either the BidPips or AskPips field on the rate update that the client is executing. The front end typically populates this field by reading the currently rendered forward points on the buy or sell button at the time the user clicks. For SPOT trades this field should be not sent. Example value: 53.90
-
-