fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 419 B
TypeScript
/**
* Transaction Type - required except where SettlInstMode is 5=Reject SSI request
* - Tag: 1162
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SettlObligTransType: Readonly<{
/** Cancel */
readonly Cancel: 'C';
/** New */
readonly New: 'N';
/** Replace */
readonly Replace: 'R';
/** Restate */
readonly Restate: 'T';
}>;