fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 663 B
TypeScript
/**
* Type of Security Definition message response.
* - Tag: 323
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SecurityResponseType: Readonly<{
/** Accept security proposal as-is */
readonly AcceptAsIs: 1;
/** Accept security proposal with revisions as indicated in the message */
readonly AcceptWithRevisions: 2;
/** Reject security proposal */
readonly RejectSecurityProposal: 5;
/** Cannot match selection criteria */
readonly CannotMatchSelectionCriteria: 6;
}>;
export type SecurityResponseType = (typeof SecurityResponseType)[keyof typeof SecurityResponseType];