fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 387 B
TypeScript
/**
* Specifies the action taken or to be taken for the specified instrument or list of instruments.
* - Tag: 980
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SecurityUpdateAction: Readonly<{
/** Add */
readonly Add: 'A';
/** Delete */
readonly Delete: 'D';
/** Modify */
readonly Modify: 'M';
}>;