fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 351 B
TypeScript
/**
* Indicates order settlement period for the underlying instrument.
* - Tag: 975
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const UnderlyingSettlementType: Readonly<{
/** T+1 */
readonly TPlus1: 2;
/** T+3 */
readonly TPlus3: 4;
/** T+4 */
readonly TPlus4: 5;
}>;