fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 336 B
TypeScript
/**
* Identifies advertisement message transaction type
* - Tag: 5
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const AdvTransType: Readonly<{
/** New */
readonly New: 'N';
/** Cancel */
readonly Cancel: 'C';
/** Replace */
readonly Replace: 'R';
}>;