fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 305 B
TypeScript
/**
* Method under which assignment was conducted
* - Tag: 1049
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const InstrmtAssignmentMethod: Readonly<{
/** Pro rata */
readonly ProRata: 'P';
/** Random */
readonly Random: 'R';
}>;