Interface MMInterventionQuoteClientFieldSet
-
- All Superinterfaces:
LeggedMessage
,Message
- All Known Implementing Classes:
MMInterventionQuoteClientFieldSetChild
,QuoteTradeEvent
public interface MMInterventionQuoteClientFieldSet extends LeggedMessage
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.lang.String
getAppID()
A unique identifier for the client applicationdefault java.lang.String
getInterestMargin()
This field represents the margin that the sales user has selected.default java.lang.String
getInterestRate()
Interest margin on the given InterestRate.default java.lang.String
getOverallTimeOut()
This field is the length of time in seconds that a sales intervention quote is valid for.default java.lang.String
getPricingType()
The type of pricing, either QUOTE or STREAM, QUOTE will send a send a singe quote to the client, while STREAM will stream rates to the client using the given margins.default java.lang.String
getRemainingTimeOutMillis()
This field is the remaining length of time in milliseconds that a sales intervention quote is valid for.default java.lang.String
getTraderInterestRate()
This field represents the interest rate that the sales user has selected.-
Methods inherited from interface com.caplin.motif.datasource.LeggedMessage
getId, getIndex
-
-
-
-
Method Detail
-
getPricingType
default java.lang.String getPricingType()
The type of pricing, either QUOTE or STREAM, QUOTE will send a send a singe quote to the client, while STREAM will stream rates to the client using the given margins.
-
getInterestRate
default java.lang.String getInterestRate()
Interest margin on the given InterestRate.
-
getInterestMargin
default java.lang.String getInterestMargin()
This field represents the margin that the sales user has selected. It should be sent as a raw value, and unformatted.
-
getTraderInterestRate
default java.lang.String getTraderInterestRate()
This field represents the interest rate that the sales user has selected.
-
getOverallTimeOut
default java.lang.String getOverallTimeOut()
This field is the length of time in seconds that a sales intervention quote is valid for.
-
getRemainingTimeOutMillis
default java.lang.String getRemainingTimeOutMillis()
This field is the remaining length of time in milliseconds that a sales intervention quote is valid for.
-
getAppID
default java.lang.String getAppID()
A unique identifier for the client application
-
-