fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 583 B
TypeScript
/**
* Indicates whether or not message is being sent as a result of a subscription request or not.
* - Tag: 325
* - FIX Specification type: Boolean
* - Mapped type: string
* @readonly
* @public
*/
export declare const UnsolicitedIndicator: Readonly<{
/** Message is being sent as a result of a prior request */
readonly MessageIsBeingSentAsAResultOfAPriorRequest: "N";
/** Message is being sent unsolicited */
readonly MessageIsBeingSentUnsolicited: "Y";
}>;
export type UnsolicitedIndicator = (typeof UnsolicitedIndicator)[keyof typeof UnsolicitedIndicator];