fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 544 B
TypeScript
/**
* Subscription Request Type
* - Tag: 263
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SubscriptionRequestType: Readonly<{
/** Snapshot */
readonly Snapshot: "0";
/** Snapshot + Updates (Subscribe) */
readonly SnapshotAndUpdates: "1";
/** Disable previous Snapshot + Update Request (Unsubscribe) */
readonly DisablePreviousSnapshot: "2";
}>;
export type SubscriptionRequestType = (typeof SubscriptionRequestType)[keyof typeof SubscriptionRequestType];