fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 329 B
TypeScript
/**
* Indicates the type of transfer transaction.
* - Tag: 2439
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const TransferTransType: Readonly<{
/** New */
readonly New: 0;
/** Replace */
readonly Replace: 1;
/** Cancel */
readonly Cancel: 2;
}>;