fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 341 B
TypeScript
/**
* RoundingDirection
* - Tag: 468
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const RoundingDirection: Readonly<{
/** Round to nearest */
readonly RoundToNearest: '0';
/** Round down */
readonly RoundDown: '1';
/** Round up */
readonly RoundUp: '2';
}>;