fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 304 B
TypeScript
/**
* Exercise Method used to in performing assignment.
* - Tag: 747
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const ExerciseMethod: Readonly<{
/** Automatic */
readonly Automatic: 'A';
/** Manual */
readonly Manual: 'M';
}>;