UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

17 lines (16 loc) 448 B
/** * Indicates the type of multiplier being applied to the contract. Can be optionally used to further define what unit ContractMultiplier(tag 231) is expressed in. * - Tag: 1435 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const ContractMultiplierUnit: Readonly<{ /** Shares */ readonly Shares: 0; /** Hours */ readonly Hours: 1; /** Days */ readonly Days: 2; }>;